edited by
5,692 views

2 Answers

2 votes
2 votes

ans will be C  since data drives forward chaining it is data driven  and goal drives backward chaining it is goal driven 

Forward chaining is one of the two main methods of reasoning when using an inference engine and can be described logically as repeated application of modus ponens. Forward chaining is a popular implementation strategy for expert systemsbusiness and production rule systems. The opposite of forward chaining is backward chaining.

Forward chaining starts with the available data and uses inference rules to extract more data (from an end user, for example) until a goal is reached.

the name "forward chaining" comes from the fact that the inference engine starts with the data and reasons its way to the answer, as opposed to backward chaining, which works the other way around. In the derivation, the rules are used in the opposite order as compared to backward chaining. In this example, rules #2 and #4 were not used in determining that Fritz is green.

Because the data determines which rules are selected and used, this method is called data-driven, in contrast to goal-driven backward chaining inference. The forward chaining approach is often employed by expert systems, such as CLIPS.

0 votes
0 votes

Forward chaining systems are data-driven, whereas backward chaining systems are goal-driven.

  • Forward Chaining: In a forward chaining system, the reasoning process starts with available data and moves forward to draw conclusions or make decisions based on the observed facts. It is data-driven because it uses existing information to infer new knowledge.

  • Backward Chaining: In a backward chaining system, the reasoning process starts with a goal or desired outcome and works backward to find the necessary conditions or data to achieve that goal. It is goal-driven as it aims to satisfy a specific objective or condition.

So, the correct option is:

Data driven, Goal driven

Answer:

Related questions

3 votes
3 votes
2 answers
2
go_editor asked Aug 11, 2016
1,823 views
Language model used in LISP isFunctional programmingLogic programmingObject oriented programmingAll of the above
3 votes
3 votes
1 answer
4
go_editor asked Aug 1, 2016
2,930 views
Match the following with respect to heuristic search techniques $:$$\begin{array}{clcl} & \textbf{List – I} && \textbf{List – II} \\ \text{(a)} & \text{Steepest-accce...