Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

12. Trace a data-driven execution of the financial advisor of Example 3.3.5 for the case of an individual with four dependents, $18,000 in the bank,

image text in transcribed
image text in transcribed
image text in transcribed
12. Trace a data-driven execution of the financial advisor of Example 3.3.5 for the case of an individual with four dependents, $18,000 in the bank, and a steady income of $25,000 per year. Based on a comparison of this problem and the example in the text, suggest a generally "best" strategy for solving the problem. TXAMPLX 3.35: THE FINANCIAL ADVISOR REVISITED In the last example of Chapter 2 we used predicate calcules to represent a set of rules for giving investment advice. In that example, modus ponens was used to infor a proper investment for a particular individual. We did not discuss the way in which a program might determine the appropriate inferences. This is, of course, a search problem the present example illustrates one approach to implementing the logic-based financial advisor, using goal-directed depth-first search with backtracking. The discussion uses the predicates found in Section 2.4 these predicates are not duplicated here. Assume that the individual has two dependents, $20,000 in savings, and a steady income of $30,000. As discussed in Chapter 2. we can add predicato calculus expressions describing these facts to the set of predicate calculus expressions. Alternatively, the program may begin the search without this information and ask the user to add it as needed. This has the advantage of not requiring data that may not prove necessary for a solution. This approach, often taken with expert systems, is illustrated here In performing a consultation, the goal is to find an investment: this is represented with the predicate calculus expression 3 X investment(X), where X in the goal variable we seek to bind. There are three rules (1.2 and 3) that conclude about investments, because the query will unify with the conclusion of these rules. If we select rule 1 for initial explo- ration, its peemise savings account inadequate) becomes the subgoal, to the child In generating the children of savings account inadequate), the only rule that may be applied is rule 5. This produces the and nodo: CHAPTER 37 STRUCTURES AND STRATEGIES FOR STATE SPACE SEARCH 115 amount_saved(X) A dependents(Y) A greator(X minsavings{Y}). If we attempt to satisfy these in lett-to-night order, amount_saved[X) is taken as the first subgoal. Because the system contains no rules that conclude this subgoal, it will query the user. When amount saved(20000) is added the first subgoal will succeed with unification substituting 20000 for X. Note that because an and node is being searched, a failure here would eliminate the need to examine the remainder of the expression Similarly, the subgoal dependents(Y) leads to a user query, and the response dependents(2). is added to the logical description. The subgoal matches this expression with the substitution (2/7). With these substitutions, the search next evaluates the truth of - greater(20000, minsavings(2)). This evaluates to false, causing failure of the entire and node. The search then backtracks to the parent node, savings account inadequate), and attempts to find an alternative way to prove that node true. This corresponds to the generation of the next child in the search. Because no other rules conclude this subgoal, search fails back to the top-level goal investment(X). The next rule whose conclusions unify with this goal is rule 2. producing the new subgoals savings account(adequate) income adequate). Continuing the search, savings account adequate) is proved true as the conclu- sion of rule 4, and income adequate) follows as the conclusion of rule 6. Although the details of the remainder of the search will be left to the reader the and/or graph that is ulti- mately explored appears in Figure 3.26. EXAMPLE 3.3.5: THE FINANCIAL ADVISOR REVISITED In the last example of Chapter 2 we used predicate calculus to represent a set of rules for giving investment advice. In that example, modus ponens was used to infer a proper investment for a particular individual. We did not discuss the way in which a program might determine the appropriate inferences. This is, of course, a search problem; the present example illustrates one approach to implementing the logic-based financial advisor, using goal-directed, depth-first search with backtracking. The discussion uses the predicates found in Section 2.4, these predicates are not duplicated here. Assume that the individual has two dependents, $20,000 in savings, and a steady income of $30,000. As discussed in Chapter 2, we can add predicate calculus expressions describing these facts to the set of predicate calculus expressions, Alternatively, the program may begin the search without this information and ask the user to add it as needed. This has the advantage of not requiring data that may not prove necessary for a solution. This approach, often taken with expert systems, is illustrated here. In performing a consultation, the goal is to find an investment; this is represented with the predicate calculus expression 3 X investment(X), where X in the goal variable we seek to bind. There are three rules (1, 2 and 3) that conclude about investments, because the query will unify with the conclusion of these rules. If we select rule 1 for initial explo- ration, its premise savings account(inadequate) becomes the subgoal, i.e., the child node that will be expanded next. In generating the children of savings account(inadequate), the only rule that may be applied is rule 5. This produces the and node: CHAPTER 3 / STRUCTURES AND STRATEGIES FOR STATE SPACE SEARCH 115 12. Trace a data-driven execution of the financial advisor of Example 3.3.5 for the case of an individual with four dependents, $18,000 in the bank, and a steady income of $25,000 per year. Based on a comparison of this problem and the example in the text, suggest a generally "best" strategy for solving the problem. TXAMPLX 3.35: THE FINANCIAL ADVISOR REVISITED In the last example of Chapter 2 we used predicate calcules to represent a set of rules for giving investment advice. In that example, modus ponens was used to infor a proper investment for a particular individual. We did not discuss the way in which a program might determine the appropriate inferences. This is, of course, a search problem the present example illustrates one approach to implementing the logic-based financial advisor, using goal-directed depth-first search with backtracking. The discussion uses the predicates found in Section 2.4 these predicates are not duplicated here. Assume that the individual has two dependents, $20,000 in savings, and a steady income of $30,000. As discussed in Chapter 2. we can add predicato calculus expressions describing these facts to the set of predicate calculus expressions. Alternatively, the program may begin the search without this information and ask the user to add it as needed. This has the advantage of not requiring data that may not prove necessary for a solution. This approach, often taken with expert systems, is illustrated here In performing a consultation, the goal is to find an investment: this is represented with the predicate calculus expression 3 X investment(X), where X in the goal variable we seek to bind. There are three rules (1.2 and 3) that conclude about investments, because the query will unify with the conclusion of these rules. If we select rule 1 for initial explo- ration, its peemise savings account inadequate) becomes the subgoal, to the child In generating the children of savings account inadequate), the only rule that may be applied is rule 5. This produces the and nodo: CHAPTER 37 STRUCTURES AND STRATEGIES FOR STATE SPACE SEARCH 115 amount_saved(X) A dependents(Y) A greator(X minsavings{Y}). If we attempt to satisfy these in lett-to-night order, amount_saved[X) is taken as the first subgoal. Because the system contains no rules that conclude this subgoal, it will query the user. When amount saved(20000) is added the first subgoal will succeed with unification substituting 20000 for X. Note that because an and node is being searched, a failure here would eliminate the need to examine the remainder of the expression Similarly, the subgoal dependents(Y) leads to a user query, and the response dependents(2). is added to the logical description. The subgoal matches this expression with the substitution (2/7). With these substitutions, the search next evaluates the truth of - greater(20000, minsavings(2)). This evaluates to false, causing failure of the entire and node. The search then backtracks to the parent node, savings account inadequate), and attempts to find an alternative way to prove that node true. This corresponds to the generation of the next child in the search. Because no other rules conclude this subgoal, search fails back to the top-level goal investment(X). The next rule whose conclusions unify with this goal is rule 2. producing the new subgoals savings account(adequate) income adequate). Continuing the search, savings account adequate) is proved true as the conclu- sion of rule 4, and income adequate) follows as the conclusion of rule 6. Although the details of the remainder of the search will be left to the reader the and/or graph that is ulti- mately explored appears in Figure 3.26. EXAMPLE 3.3.5: THE FINANCIAL ADVISOR REVISITED In the last example of Chapter 2 we used predicate calculus to represent a set of rules for giving investment advice. In that example, modus ponens was used to infer a proper investment for a particular individual. We did not discuss the way in which a program might determine the appropriate inferences. This is, of course, a search problem; the present example illustrates one approach to implementing the logic-based financial advisor, using goal-directed, depth-first search with backtracking. The discussion uses the predicates found in Section 2.4, these predicates are not duplicated here. Assume that the individual has two dependents, $20,000 in savings, and a steady income of $30,000. As discussed in Chapter 2, we can add predicate calculus expressions describing these facts to the set of predicate calculus expressions, Alternatively, the program may begin the search without this information and ask the user to add it as needed. This has the advantage of not requiring data that may not prove necessary for a solution. This approach, often taken with expert systems, is illustrated here. In performing a consultation, the goal is to find an investment; this is represented with the predicate calculus expression 3 X investment(X), where X in the goal variable we seek to bind. There are three rules (1, 2 and 3) that conclude about investments, because the query will unify with the conclusion of these rules. If we select rule 1 for initial explo- ration, its premise savings account(inadequate) becomes the subgoal, i.e., the child node that will be expanded next. In generating the children of savings account(inadequate), the only rule that may be applied is rule 5. This produces the and node: CHAPTER 3 / STRUCTURES AND STRATEGIES FOR STATE SPACE SEARCH 115

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Financial Whirlpools A Systems Story Of The Great Global Recession

Authors: Karen L. Higgins

1st Edition

0124059058,012405921X

More Books

Students also viewed these Finance questions