means–ends analysis

{{short description|Problem solving technique}}

Means–ends analysisSimon, H. A. (1981). The sciences of the artificial. Cambridge, Massachusetts: MIT Press. (MEA) is a problem solving technique used commonly in artificial intelligence (AI) for limiting search in AI programs.

It is also a technique used at least since the 1950s as a creativity tool, most frequently mentioned in engineering books on design methods. MEA is also related to means–ends chain approach used commonly in consumer behavior analysis.Kaciak, E and Cullen, C.W. (2006). [https://link.springer.com/content/pdf/10.1057/palgrave.jt.5750028.pdf Analysis of means–ends chain data in marketing research]. Journal of Targeting, Measurement and Analysis for Marketing 15, 12 – 20. It is also a way to clarify one's thoughts when embarking on a mathematical proof.

How means–ends analysis works

The MEA technique is a strategy to control search in problem-solving. Given a current state and a goal state, an action is chosen which will reduce the difference between the two. The action is performed on the current state to produce a new state, and the process is recursively applied to this new state and the goal state.

Note that, in order for MEA to be effective, the goal-seeking system must have a means of associating to any kind of detectable difference those actions that are relevant to reducing that difference. It must also have means for detecting the progress it is making (the changes in the differences between the actual and the desired state), as some attempted sequences of actions may fail and, hence, some alternate sequences may be tried.

When knowledge is available concerning the importance of differences, the most important difference is selected first to further improve the average performance of MEA over other brute-force search strategies. However, even without the ordering of differences according to importance, MEA improves over other search heuristics (again in the average case) by focusing the problem solving on the actual differences between the current state and that of the goal.

Some AI systems using MEA

The MEA technique as a problem-solving strategy was first introduced in 1961 by Allen Newell and Herbert A. Simon in their computer problem-solving program General Problem Solver (GPS).Newell, A., & Simon, H. A. (1959). The simulation of human thought. Santa Monica, Calif: Rand Corp.Newell, A., & Simon, H. A. (1961). GPS, a program that simulates human thought. Santa Monica, Calif: Rand Corporation. In that implementation, the correspondence between differences and actions, also called operators, is provided a priori as knowledge in the system. (In GPS this knowledge was in the form of a table of connections.)

When the action and side-effects of applying an operator are penetrable{{clarify|date=September 2013}} the search may select the relevant operators by inspection of the operators and do without a table of connections. This latter case, of which the canonical example is STRIPS, an automated planning computer program, allows task-independent correlation of differences to the operators which reduce them.

[https://www.cs.cmu.edu/afs/cs/project/prodigy/Web/prodigy-home.html Prodigy], a problem solver developed in a larger learning-assisted automated planning project started at Carnegie Mellon University by Jaime Carbonell, Steven Minton and Craig Knoblock, is another system that used MEA.

Professor Morten Lind, at Technical University of Denmark has developed a tool called Multilevel Flow Modeling (MFM). It performs means–ends based diagnostic reasoning for industrial control and automation systems.{{citation needed|date=July 2019}}

See also

References

{{Reflist}}

{{DEFAULTSORT:Means-Ends Analysis}}

Category:Artificial intelligence

Category:Futures techniques