際際滷

際際滷Share a Scribd company logo
Artificial Intelligence
Expert Systems: Definition, Functioning, and
Development Approach - [Part: 2]
Dr. DEGHA Houssem Eddine
March 17, 2025
Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 1/17
Backward Chaining
Backward Chaining: A Goal-Driven Approach 
Definition:
 f Backward Chaining is an inference method used in logical reasoning and
artificial intelligence.
 賊 It starts with a goal (hypothesis) and works backward to determine if known
facts support it.
  Commonly used in diagnostic systems, AI, and expert systems where the
desired conclusion is known.
  Ensures e鍖icient problem-solving by focusing only on relevant conditions.
Example:  A doctor diagnosing a disease by analyzing symptoms and tracing back
to possible causes.
Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 3/17
Backward Chaining: Thinking in Reverse
How it Works:
 Starts with a goal: Verifies its validity by analyzing prior conditions.
 Used in AI: Applied in decision support systems and logical reasoning.
 E鍖icient Processing: Focuses only on relevant information to reach conclusions.
Example Scenario: AI diagnosing a network issue by tracing root causes step by step.
Key Benefit: Increases e鍖iciency by avoiding unnecessary data exploration.
Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 4/17
How Does Backward Chaining Work? 
Step-by-Step Process:
1. 聴 Start with a clearly defined goal or hypothesis.
2. f Check existing facts and rules that may lead to the goal.
3. 賊 Work backward by analyzing dependencies and conditions.
4. 測 Confirm or reject the hypothesis based on available data.
Example: A security system determining if an unauthorized access attempt was made
by checking log anomalies and system events.
Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 5/17
Data and Relationships
Papers and Topics:
 Paper A: Deep Learning in NLP
 Paper B: Neural Network Basics
 Paper C: Advanced NLP Models
 Paper D: Attention Mechanisms
 Paper E: Transformer Networks
 Paper F: Renewable Energy Systems
 Paper G: Solar Power Innovations
 Paper H: Wind Energy Optimization
Known Relationships:
 cites(PaperA, PaperB)
 cites(PaperA, PaperC)
 cites(PaperB, PaperD)
 coCited(PaperC, PaperD)
 coCited(PaperD, PaperE)
 cites(PaperE, PaperF)
 coCited(PaperF, PaperG)
 cites(PaperG, PaperH)
Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 6/17
Backward Chaining Rules
Rules Applied:
1 begin{lstlisting}
2 % Rule 1: If a paper cites another, recommend it
3 cites(PaperA, PaperB) -> recommend(PaperB).
4 cites(PaperA, PaperC) -> recommend(PaperC).
5
6 % Rule 2: If a paper is co-cited with another, recommend it
7 coCited(PaperC, PaperD) -> recommend(PaperD).
8 coCited(PaperD, PaperE) -> recommend(PaperE).
9
10 % Rule 3: If a paper cites another that was already recommended, recommend
the cited paper
11 cites(PaperE, PaperF) -> recommend(PaperF).
12 coCited(PaperF, PaperG) -> recommend(PaperG).
Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 7/17
Backward Chaining for Citation Recommendation
Goal: Determine if a paper should be recommended.
 We work backward from the goal.
 We verify conditions step by step.
Step Goal/Input Rule Used Output/Conclusion
1 Define Goal: recommend(PaperG) N/A Goal is set
2 Check relevant rules coCited(PaperF, PaperG)  recommend(PaperG) Identify condition
3 Verify condition Need to verify recommend(PaperF) Proceed to next step
4 Check relevant rules cites(PaperE, PaperF)  recommend(PaperF) Identify condition
5 Verify condition Need to verify recommend(PaperE) Proceed to next step
6 Check relevant rules coCited(PaperD, PaperE)  recommend(PaperE) Identify condition
7 Verify condition Need to verify recommend(PaperD) Proceed to next step
8 Check relevant rules coCited(PaperC, PaperD)  recommend(PaperD) Identify condition
9 Verify condition coCited(PaperC, PaperD) holds true recommend(PaperD) is true
10 Conclusion recommend(PaperE) is true recommend(PaperF) is true
11 Conclusion recommend(PaperG) is true 鐃 Goal achieved
Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 8/17
Abductive Reasoning
Abductive Reasoning 
Definition:
 f Abductive reasoning finds the most plausible explanation for observed facts.
 直 Used when data is incomplete or uncertain.
  Applied in research recommendations, medical diagnosis, and AI
predictions.
Example Context:  Recommending research papers based on citation relationships.
Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 10/17
Data and Relationships 
Papers and Topics:
 Paper A: Deep Learning in NLP
 Paper B: Neural Network Basics
 Paper C: Advanced NLP Models
 Paper D: Attention Mechanisms
 Paper E: Transformer Networks
 Paper F: Renewable Energy Systems
 Paper G: Solar Power Innovations
 Paper H: Wind Energy Optimization
Known Relationships:
 cites(PaperA, PaperB),
cites(PaperA, PaperC)
 cites(PaperB, PaperD),
coCited(PaperC, PaperD)
 coCited(PaperD, PaperE),
cites(PaperE, PaperF)
 coCited(PaperF, PaperG),
cites(PaperG, PaperH)
Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 11/17
Rules for Paper Recommendation {
Applied Rules:
 Rule 1: If a paper cites another, recommend it:
 cites(PaperA, PaperB)  recommend(PaperB)
 cites(PaperA, PaperC)  recommend(PaperC)
 Rule 2: If a paper is co-cited with another, recommend it:
 coCited(PaperC, PaperD)  recommend(PaperD)
 coCited(PaperD, PaperE)  recommend(PaperE)
 Rule 3: If a paper cites another already recommended paper, recommend it:
 cites(PaperE, PaperF)  recommend(PaperF)
 coCited(PaperF, PaperG)  recommend(PaperG)
Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 12/17
Abductive Reasoning Process 
Step Observation (Fact) Abductive Hypothesis
(Best Explanation)
Rule Applied Output (Conclusion)
1 Paper F appears in
recommendations
Hypothesis: Paper F is
relevant
 Need to verify why Pa-
per F is relevant
2 Paper E cites Paper
F
Paper E is likely relevant Rule 3: Citation Paper E is added as a
relevant paper
3 Paper D is co-cited
with Paper E
Paper D might be rele-
vant
Rule 2: Co-citation Paper D is added as a
relevant paper
4 Paper C is co-cited
with Paper D
Paper C might be rele-
vant
Rule 2: Co-citation Paper C is added as a
relevant paper
5 Paper A cites Paper
C
Paper A is likely relevant Rule 1: Citation Paper A is added as a
relevant paper
6 Paper A is an NLP-
related paper
NLP relevance explains
Paper Fs connection
Background Knowl-
edge
Paper F is justified as
relevant
Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 13/17
Inductive Reasoning
Inductive Reasoning: Concept
Definition:
Inductive reasoning generalizes from specific observations to broader principles or
rules. It is useful when patterns or trends are observed in the data, leading to
predictions.
Key Characteristics:
 fUsed for pattern recognition and trend analysis.
 Helps in forming hypotheses and theories.
 Applied in AI, machine learning, and scientific research.
Example: If multiple papers show a correlation between Transformer Networks and
high NLP performance, we can generalize that Transformers are effective for NLP
tasks.
Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 15/17
短Inductive Reasoning Process
Step Observation (Fact) Inductive Pattern Generalization (Conclusion)
1 Paper A (Deep Learning
in NLP) uses Transform-
ers
Transformers improve NLP
tasks
Hypothesis: Transformers en-
hance NLP
2 Paper B (Neural Net-
works) compares RNNs
vs. Transformers
Transformers outperform
RNNs in benchmarks
Transformers are more effective
for NLP
3 Paper C (Advanced NLP
Models) applies Trans-
formers to language tasks
Transformer-based models
achieve high accuracy
Transformers are state-of-the-art
for NLP
4 Paper D (Attention
Mechanisms) finds that
attention boosts perfor-
mance
Attention mechanism is key to
Transformers
Transformer models generalize
well
Final Con-
clusion
Transformers are highly effective for NLP and should be the preferred architecture.
Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 16/17
測Benefits of Inductive Reasoning
Why Use Inductive Reasoning?
 Discovers hidden patterns in large datasets.
 謄Predicts future trends based on past data.
 Forms general theories from real-world observations.
 Applies to AI and machine learning for model training.
Example: The discovery of Transformers success in NLP led to their widespread
adoption in AI applications.
Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 17/17

More Related Content

Similar to Expert Systems: Definition, Functioning, and Development Approach - [Part: 2] (20)

Introduction Research methodology
Introduction Research methodology Introduction Research methodology
Introduction Research methodology
panaidu
Presentation Fuzzy
Presentation FuzzyPresentation Fuzzy
Presentation Fuzzy
Ali
PPT ON INTRODUCTION TO AI- UNIT-1-PART-3.pptx
PPT ON INTRODUCTION TO AI- UNIT-1-PART-3.pptxPPT ON INTRODUCTION TO AI- UNIT-1-PART-3.pptx
PPT ON INTRODUCTION TO AI- UNIT-1-PART-3.pptx
RaviKiranVarma4
sience 2.0 : an illustration of good research practices in a real study
sience 2.0 : an illustration of good research practices in a real studysience 2.0 : an illustration of good research practices in a real study
sience 2.0 : an illustration of good research practices in a real study
wolf vanpaemel
2015 balti-and-bioinformatics
2015 balti-and-bioinformatics2015 balti-and-bioinformatics
2015 balti-and-bioinformatics
c.titus.brown
On Machine Learning and Data Mining
On Machine Learning and Data MiningOn Machine Learning and Data Mining
On Machine Learning and Data Mining
butest
grounded theory.pdf
grounded theory.pdfgrounded theory.pdf
grounded theory.pdf
SamitRajan1
Grounded theory.pdf
Grounded theory.pdfGrounded theory.pdf
Grounded theory.pdf
International advisers
Metodologi 1
Metodologi 1Metodologi 1
Metodologi 1
Hendra Grandis
Experimental_Design FGFG FGFGFGFF BFHFF.ppt
Experimental_Design FGFG FGFGFGFF BFHFF.pptExperimental_Design FGFG FGFGFGFF BFHFF.ppt
Experimental_Design FGFG FGFGFGFF BFHFF.ppt
MahmoudElborae
Introduction to Data Mining
Introduction to Data MiningIntroduction to Data Mining
Introduction to Data Mining
Kai Koenig
Selecting the correct Data Mining Method: Classification & InDaMiTe-R
Selecting the correct Data Mining Method: Classification & InDaMiTe-RSelecting the correct Data Mining Method: Classification & InDaMiTe-R
Selecting the correct Data Mining Method: Classification & InDaMiTe-R
IOSR Journals
Elsevier Industry Talk - WSDM 2020
Elsevier Industry Talk - WSDM 2020Elsevier Industry Talk - WSDM 2020
Elsevier Industry Talk - WSDM 2020
Daniel Kershaw
Open & reproducible research - What can we do in practice?
Open & reproducible research - What can we do in practice?Open & reproducible research - What can we do in practice?
Open & reproducible research - What can we do in practice?
Felix Z. Hoffmann
Journal Articles Are Not the Only Fruit: Registered Reports
Journal Articles Are Not the Only Fruit: Registered ReportsJournal Articles Are Not the Only Fruit: Registered Reports
Journal Articles Are Not the Only Fruit: Registered Reports
University of Liverpool Library
Re-Mining Association Mining Results Through Visualization, Data Envelopment ...
Re-Mining Association Mining Results Through Visualization, Data Envelopment ...Re-Mining Association Mining Results Through Visualization, Data Envelopment ...
Re-Mining Association Mining Results Through Visualization, Data Envelopment ...
ertekg
Introduction to research
Introduction to researchIntroduction to research
Introduction to research
HKRabby2
My experiment
My experimentMy experiment
My experiment
Boshra Albayaty
Engineering Data Science Objectives for Social Network Analysis
Engineering Data Science Objectives for Social Network AnalysisEngineering Data Science Objectives for Social Network Analysis
Engineering Data Science Objectives for Social Network Analysis
David Gleich
Natural Language Processing for Data Extraction and Synthesizability Predicti...
Natural Language Processing for Data Extraction and Synthesizability Predicti...Natural Language Processing for Data Extraction and Synthesizability Predicti...
Natural Language Processing for Data Extraction and Synthesizability Predicti...
Anubhav Jain
Introduction Research methodology
Introduction Research methodology Introduction Research methodology
Introduction Research methodology
panaidu
Presentation Fuzzy
Presentation FuzzyPresentation Fuzzy
Presentation Fuzzy
Ali
PPT ON INTRODUCTION TO AI- UNIT-1-PART-3.pptx
PPT ON INTRODUCTION TO AI- UNIT-1-PART-3.pptxPPT ON INTRODUCTION TO AI- UNIT-1-PART-3.pptx
PPT ON INTRODUCTION TO AI- UNIT-1-PART-3.pptx
RaviKiranVarma4
sience 2.0 : an illustration of good research practices in a real study
sience 2.0 : an illustration of good research practices in a real studysience 2.0 : an illustration of good research practices in a real study
sience 2.0 : an illustration of good research practices in a real study
wolf vanpaemel
2015 balti-and-bioinformatics
2015 balti-and-bioinformatics2015 balti-and-bioinformatics
2015 balti-and-bioinformatics
c.titus.brown
On Machine Learning and Data Mining
On Machine Learning and Data MiningOn Machine Learning and Data Mining
On Machine Learning and Data Mining
butest
grounded theory.pdf
grounded theory.pdfgrounded theory.pdf
grounded theory.pdf
SamitRajan1
Experimental_Design FGFG FGFGFGFF BFHFF.ppt
Experimental_Design FGFG FGFGFGFF BFHFF.pptExperimental_Design FGFG FGFGFGFF BFHFF.ppt
Experimental_Design FGFG FGFGFGFF BFHFF.ppt
MahmoudElborae
Introduction to Data Mining
Introduction to Data MiningIntroduction to Data Mining
Introduction to Data Mining
Kai Koenig
Selecting the correct Data Mining Method: Classification & InDaMiTe-R
Selecting the correct Data Mining Method: Classification & InDaMiTe-RSelecting the correct Data Mining Method: Classification & InDaMiTe-R
Selecting the correct Data Mining Method: Classification & InDaMiTe-R
IOSR Journals
Elsevier Industry Talk - WSDM 2020
Elsevier Industry Talk - WSDM 2020Elsevier Industry Talk - WSDM 2020
Elsevier Industry Talk - WSDM 2020
Daniel Kershaw
Open & reproducible research - What can we do in practice?
Open & reproducible research - What can we do in practice?Open & reproducible research - What can we do in practice?
Open & reproducible research - What can we do in practice?
Felix Z. Hoffmann
Journal Articles Are Not the Only Fruit: Registered Reports
Journal Articles Are Not the Only Fruit: Registered ReportsJournal Articles Are Not the Only Fruit: Registered Reports
Journal Articles Are Not the Only Fruit: Registered Reports
University of Liverpool Library
Re-Mining Association Mining Results Through Visualization, Data Envelopment ...
Re-Mining Association Mining Results Through Visualization, Data Envelopment ...Re-Mining Association Mining Results Through Visualization, Data Envelopment ...
Re-Mining Association Mining Results Through Visualization, Data Envelopment ...
ertekg
Introduction to research
Introduction to researchIntroduction to research
Introduction to research
HKRabby2
Engineering Data Science Objectives for Social Network Analysis
Engineering Data Science Objectives for Social Network AnalysisEngineering Data Science Objectives for Social Network Analysis
Engineering Data Science Objectives for Social Network Analysis
David Gleich
Natural Language Processing for Data Extraction and Synthesizability Predicti...
Natural Language Processing for Data Extraction and Synthesizability Predicti...Natural Language Processing for Data Extraction and Synthesizability Predicti...
Natural Language Processing for Data Extraction and Synthesizability Predicti...
Anubhav Jain

Recently uploaded (20)

Organisation Cloud Migration For Core Business Application On OCI Cloud
Organisation Cloud Migration For Core Business Application On OCI CloudOrganisation Cloud Migration For Core Business Application On OCI Cloud
Organisation Cloud Migration For Core Business Application On OCI Cloud
Rohan Singh
Mastering NIST CSF 2.0 - The New Govern Function.pdf
Mastering NIST CSF 2.0 - The New Govern Function.pdfMastering NIST CSF 2.0 - The New Govern Function.pdf
Mastering NIST CSF 2.0 - The New Govern Function.pdf
Bachir Benyammi
Graphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAIGraphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAI
Neo4j
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service SuperpowersWhen Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
Eric D. Schabell
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
How to manage technology risk and corporate growth
How to manage technology risk and corporate growthHow to manage technology risk and corporate growth
How to manage technology risk and corporate growth
Arlen Meyers, MD, MBA
A General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithmsA General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithms
Buhwan Jeong
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & TradeoffsAchieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
ScyllaDB
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
IBsolution GmbH
Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5
Margaret Maynard-Reid
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio WebUiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
DianaGray10
Digital Nepal Framework 2.0: A Step Towards a Digitally Empowered Nepal
Digital Nepal Framework 2.0: A Step Towards a Digitally Empowered NepalDigital Nepal Framework 2.0: A Step Towards a Digitally Empowered Nepal
Digital Nepal Framework 2.0: A Step Towards a Digitally Empowered Nepal
ICT Frame Magazine Pvt. Ltd.
The Future is Here Learn How to Get Started! Ionic App Development
The Future is Here  Learn How to Get Started! Ionic App DevelopmentThe Future is Here  Learn How to Get Started! Ionic App Development
The Future is Here Learn How to Get Started! Ionic App Development
7Pillars
techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...
techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...
techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...
Usman siddiqui
Dev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPathDev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPath
UiPathCommunity
UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8
DianaGray10
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-WorldAll-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
Safe Software
Making GenAI Work: A structured approach to implementation
Making GenAI Work: A structured approach to implementationMaking GenAI Work: A structured approach to implementation
Making GenAI Work: A structured approach to implementation
Jeffrey Funk
Presentation Session 2 -Context Grounding.pdf
Presentation Session 2 -Context Grounding.pdfPresentation Session 2 -Context Grounding.pdf
Presentation Session 2 -Context Grounding.pdf
Mukesh Kala
I am afraid of no test! The power of BDD
I am afraid of no test! The power of BDDI am afraid of no test! The power of BDD
I am afraid of no test! The power of BDD
Ortus Solutions, Corp
Organisation Cloud Migration For Core Business Application On OCI Cloud
Organisation Cloud Migration For Core Business Application On OCI CloudOrganisation Cloud Migration For Core Business Application On OCI Cloud
Organisation Cloud Migration For Core Business Application On OCI Cloud
Rohan Singh
Mastering NIST CSF 2.0 - The New Govern Function.pdf
Mastering NIST CSF 2.0 - The New Govern Function.pdfMastering NIST CSF 2.0 - The New Govern Function.pdf
Mastering NIST CSF 2.0 - The New Govern Function.pdf
Bachir Benyammi
Graphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAIGraphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAI
Neo4j
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service SuperpowersWhen Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
Eric D. Schabell
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
How to manage technology risk and corporate growth
How to manage technology risk and corporate growthHow to manage technology risk and corporate growth
How to manage technology risk and corporate growth
Arlen Meyers, MD, MBA
A General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithmsA General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithms
Buhwan Jeong
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & TradeoffsAchieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
ScyllaDB
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
IBsolution GmbH
Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5
Margaret Maynard-Reid
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio WebUiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
DianaGray10
Digital Nepal Framework 2.0: A Step Towards a Digitally Empowered Nepal
Digital Nepal Framework 2.0: A Step Towards a Digitally Empowered NepalDigital Nepal Framework 2.0: A Step Towards a Digitally Empowered Nepal
Digital Nepal Framework 2.0: A Step Towards a Digitally Empowered Nepal
ICT Frame Magazine Pvt. Ltd.
The Future is Here Learn How to Get Started! Ionic App Development
The Future is Here  Learn How to Get Started! Ionic App DevelopmentThe Future is Here  Learn How to Get Started! Ionic App Development
The Future is Here Learn How to Get Started! Ionic App Development
7Pillars
techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...
techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...
techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...
Usman siddiqui
Dev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPathDev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPath
UiPathCommunity
UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8
DianaGray10
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-WorldAll-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
Safe Software
Making GenAI Work: A structured approach to implementation
Making GenAI Work: A structured approach to implementationMaking GenAI Work: A structured approach to implementation
Making GenAI Work: A structured approach to implementation
Jeffrey Funk
Presentation Session 2 -Context Grounding.pdf
Presentation Session 2 -Context Grounding.pdfPresentation Session 2 -Context Grounding.pdf
Presentation Session 2 -Context Grounding.pdf
Mukesh Kala
I am afraid of no test! The power of BDD
I am afraid of no test! The power of BDDI am afraid of no test! The power of BDD
I am afraid of no test! The power of BDD
Ortus Solutions, Corp

Expert Systems: Definition, Functioning, and Development Approach - [Part: 2]

  • 1. Artificial Intelligence Expert Systems: Definition, Functioning, and Development Approach - [Part: 2] Dr. DEGHA Houssem Eddine March 17, 2025 Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 1/17
  • 3. Backward Chaining: A Goal-Driven Approach Definition: f Backward Chaining is an inference method used in logical reasoning and artificial intelligence. 賊 It starts with a goal (hypothesis) and works backward to determine if known facts support it. Commonly used in diagnostic systems, AI, and expert systems where the desired conclusion is known. Ensures e鍖icient problem-solving by focusing only on relevant conditions. Example: A doctor diagnosing a disease by analyzing symptoms and tracing back to possible causes. Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 3/17
  • 4. Backward Chaining: Thinking in Reverse How it Works: Starts with a goal: Verifies its validity by analyzing prior conditions. Used in AI: Applied in decision support systems and logical reasoning. E鍖icient Processing: Focuses only on relevant information to reach conclusions. Example Scenario: AI diagnosing a network issue by tracing root causes step by step. Key Benefit: Increases e鍖iciency by avoiding unnecessary data exploration. Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 4/17
  • 5. How Does Backward Chaining Work? Step-by-Step Process: 1. 聴 Start with a clearly defined goal or hypothesis. 2. f Check existing facts and rules that may lead to the goal. 3. 賊 Work backward by analyzing dependencies and conditions. 4. 測 Confirm or reject the hypothesis based on available data. Example: A security system determining if an unauthorized access attempt was made by checking log anomalies and system events. Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 5/17
  • 6. Data and Relationships Papers and Topics: Paper A: Deep Learning in NLP Paper B: Neural Network Basics Paper C: Advanced NLP Models Paper D: Attention Mechanisms Paper E: Transformer Networks Paper F: Renewable Energy Systems Paper G: Solar Power Innovations Paper H: Wind Energy Optimization Known Relationships: cites(PaperA, PaperB) cites(PaperA, PaperC) cites(PaperB, PaperD) coCited(PaperC, PaperD) coCited(PaperD, PaperE) cites(PaperE, PaperF) coCited(PaperF, PaperG) cites(PaperG, PaperH) Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 6/17
  • 7. Backward Chaining Rules Rules Applied: 1 begin{lstlisting} 2 % Rule 1: If a paper cites another, recommend it 3 cites(PaperA, PaperB) -> recommend(PaperB). 4 cites(PaperA, PaperC) -> recommend(PaperC). 5 6 % Rule 2: If a paper is co-cited with another, recommend it 7 coCited(PaperC, PaperD) -> recommend(PaperD). 8 coCited(PaperD, PaperE) -> recommend(PaperE). 9 10 % Rule 3: If a paper cites another that was already recommended, recommend the cited paper 11 cites(PaperE, PaperF) -> recommend(PaperF). 12 coCited(PaperF, PaperG) -> recommend(PaperG). Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 7/17
  • 8. Backward Chaining for Citation Recommendation Goal: Determine if a paper should be recommended. We work backward from the goal. We verify conditions step by step. Step Goal/Input Rule Used Output/Conclusion 1 Define Goal: recommend(PaperG) N/A Goal is set 2 Check relevant rules coCited(PaperF, PaperG) recommend(PaperG) Identify condition 3 Verify condition Need to verify recommend(PaperF) Proceed to next step 4 Check relevant rules cites(PaperE, PaperF) recommend(PaperF) Identify condition 5 Verify condition Need to verify recommend(PaperE) Proceed to next step 6 Check relevant rules coCited(PaperD, PaperE) recommend(PaperE) Identify condition 7 Verify condition Need to verify recommend(PaperD) Proceed to next step 8 Check relevant rules coCited(PaperC, PaperD) recommend(PaperD) Identify condition 9 Verify condition coCited(PaperC, PaperD) holds true recommend(PaperD) is true 10 Conclusion recommend(PaperE) is true recommend(PaperF) is true 11 Conclusion recommend(PaperG) is true 鐃 Goal achieved Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 8/17
  • 10. Abductive Reasoning Definition: f Abductive reasoning finds the most plausible explanation for observed facts. 直 Used when data is incomplete or uncertain. Applied in research recommendations, medical diagnosis, and AI predictions. Example Context: Recommending research papers based on citation relationships. Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 10/17
  • 11. Data and Relationships Papers and Topics: Paper A: Deep Learning in NLP Paper B: Neural Network Basics Paper C: Advanced NLP Models Paper D: Attention Mechanisms Paper E: Transformer Networks Paper F: Renewable Energy Systems Paper G: Solar Power Innovations Paper H: Wind Energy Optimization Known Relationships: cites(PaperA, PaperB), cites(PaperA, PaperC) cites(PaperB, PaperD), coCited(PaperC, PaperD) coCited(PaperD, PaperE), cites(PaperE, PaperF) coCited(PaperF, PaperG), cites(PaperG, PaperH) Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 11/17
  • 12. Rules for Paper Recommendation { Applied Rules: Rule 1: If a paper cites another, recommend it: cites(PaperA, PaperB) recommend(PaperB) cites(PaperA, PaperC) recommend(PaperC) Rule 2: If a paper is co-cited with another, recommend it: coCited(PaperC, PaperD) recommend(PaperD) coCited(PaperD, PaperE) recommend(PaperE) Rule 3: If a paper cites another already recommended paper, recommend it: cites(PaperE, PaperF) recommend(PaperF) coCited(PaperF, PaperG) recommend(PaperG) Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 12/17
  • 13. Abductive Reasoning Process Step Observation (Fact) Abductive Hypothesis (Best Explanation) Rule Applied Output (Conclusion) 1 Paper F appears in recommendations Hypothesis: Paper F is relevant Need to verify why Pa- per F is relevant 2 Paper E cites Paper F Paper E is likely relevant Rule 3: Citation Paper E is added as a relevant paper 3 Paper D is co-cited with Paper E Paper D might be rele- vant Rule 2: Co-citation Paper D is added as a relevant paper 4 Paper C is co-cited with Paper D Paper C might be rele- vant Rule 2: Co-citation Paper C is added as a relevant paper 5 Paper A cites Paper C Paper A is likely relevant Rule 1: Citation Paper A is added as a relevant paper 6 Paper A is an NLP- related paper NLP relevance explains Paper Fs connection Background Knowl- edge Paper F is justified as relevant Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 13/17
  • 15. Inductive Reasoning: Concept Definition: Inductive reasoning generalizes from specific observations to broader principles or rules. It is useful when patterns or trends are observed in the data, leading to predictions. Key Characteristics: fUsed for pattern recognition and trend analysis. Helps in forming hypotheses and theories. Applied in AI, machine learning, and scientific research. Example: If multiple papers show a correlation between Transformer Networks and high NLP performance, we can generalize that Transformers are effective for NLP tasks. Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 15/17
  • 16. 短Inductive Reasoning Process Step Observation (Fact) Inductive Pattern Generalization (Conclusion) 1 Paper A (Deep Learning in NLP) uses Transform- ers Transformers improve NLP tasks Hypothesis: Transformers en- hance NLP 2 Paper B (Neural Net- works) compares RNNs vs. Transformers Transformers outperform RNNs in benchmarks Transformers are more effective for NLP 3 Paper C (Advanced NLP Models) applies Trans- formers to language tasks Transformer-based models achieve high accuracy Transformers are state-of-the-art for NLP 4 Paper D (Attention Mechanisms) finds that attention boosts perfor- mance Attention mechanism is key to Transformers Transformer models generalize well Final Con- clusion Transformers are highly effective for NLP and should be the preferred architecture. Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 16/17
  • 17. 測Benefits of Inductive Reasoning Why Use Inductive Reasoning? Discovers hidden patterns in large datasets. 謄Predicts future trends based on past data. Forms general theories from real-world observations. Applies to AI and machine learning for model training. Example: The discovery of Transformers success in NLP led to their widespread adoption in AI applications. Dr. DEGHA Houssem Eddine Artificial Intelligence March 17, 2025 17/17