Artificial Intelligence Tutorial

Introduction to Artificial Intelligence Intelligent Agents

Search Algorithms

Problem-solving Uninformed Search Informed Search Heuristic Functions Local Search Algorithms and Optimization Problems Hill Climbing search Differences in Artificial Intelligence Adversarial Search in Artificial Intelligence Minimax Strategy Alpha-beta Pruning Constraint Satisfaction Problems in Artificial Intelligence

Knowledge, Reasoning and Planning

Knowledge based agents in AI Knowledge Representation in AI The Wumpus world Propositional Logic Inference Rules in Propositional Logic Theory of First Order Logic Inference in First Order Logic Resolution method in AI Forward Chaining Backward Chaining Classical Planning

Uncertain Knowledge and Reasoning

Quantifying Uncertainty Probabilistic Reasoning Hidden Markov Models Dynamic Bayesian Networks Utility Functions in Artificial Intelligence

Misc

What is Artificial Super Intelligence (ASI) Artificial Satellites Top 7 Artificial Intelligence and Machine Learning trends for 2022 8 best topics for research and thesis in artificial intelligence 5 algorithms that demonstrate artificial intelligence bias AI and ML Trends in the World AI vs IoT Artificial Intelligence in Social Media Artificial Intelligence in Transportation Disadvantages of Artificial Intelligence in Education Flowchart for Genetic Algorithm in Artificial Intelligence IEEE Papers on Artificial Intelligence Impact of Artificial Intelligence On Everyday Life Impact of Artificial Intelligence on Jobs Interesting Facts about Artificial Intelligence Siri Artificial Intelligence Artificial intelligence assistant operating system Best Books to learn Artificial Intelligence 6th Global summit on artificial intelligence and neural networks Acting Humanly in Artificial Intelligence Artificial Intelligence in Pharmacy Artificial Intelligence in Power Station Artificial Intelligence in Supply Chain Management Artificial Intelligence Interview Questions and Answers Artificial Intelligence Jobs in India For Freshers Artificial Intelligence Painting Artificial Intelligence PNG Images Certainty Factor in AI Essay on Artificial Intelligence Upsc Hill Climbing in Artificial Intelligence Machine Learning and Artificial Intelligence Helps Businesses Operating System Based On Artificial Intelligence Skills Required for Artificial Intelligence Temporal Models in Artificial Intelligence Water Jug Problem in Artificial Intelligence Certainty Factor in Artificial Intelligence Vacuum Cleaner Problem in Artificial Intelligence What is Logic in Artificial Intelligence Artificial Communication Engineering Applications of Artificial Intelligence Types of Agents in Artificial Intelligence which-language-is-used-for-artificial-intelligence Artificial Intelligence in Agriculture Importance of Artificial Intelligence Logic in Artificial Intelligence What is Inference in AI Artificial intelligence in Broadcasting Artificial intelligence in insurance industry AI in Manufacturing Conference AI in PR AI Vs Big Data Career Salary Of AI Engineer in US Temporal Models in Artificial Intelligence Which is Better Artificial Intelligence and Cyber Security Inference in Artificial Intelligence The Role of aiml in Transforming Customer Support AI in Medicine Examples of Artificial Intelligence Software Interrupt in CPI How can we Learn Artificial Intelligence Physics in Artificial Intelligence Artificial Intelligence and Robotics History And Evolution of Artificial Intelligence Objective of Developing Artificial Intelligence Systems Agent Environment in AI Choose the Optimal Number of Epochs to Train a Neural Network in Keras Difference between Backward Chaining and Forward Chaining Difference between Feed Forward Neural Networks and Recurrent Neural Networks Means Ends Analysis in Artificial Intelligence Mini Max Algorithm in Artificial Intelligence Multi Layer Feed Forward Neural Network Reasoning in Artificial Intelligence Search Algorithms in Artificial Intelligence Turing Test in AI Issues in Design of Search Problem in Artificial Intelligence Markov Network in Artificial Intelligence Ontology in Artificial Intelligence Opportunities in Artificial Intelligence Research Center For Artificial Intelligence Scope of Artificial Intelligence And Machine Learning AI ML in India Uniform Cost Search Algorithm in Artificial Intelligence Cryptarithmetic Problem Dynamic Routing Artificial Intelligence Technologies In 2020 Gradient Descent Neural Networks Natural Language Processing Information Retrieval Unsupervised Learning In Ai Reinforcement Learning In Ai Integration of Blockchain and Artificial Intelligence Artificial Intelligence vs Machine Learning Difference between Machine Learning and Artificial Intelligence Alexnet in Artificial Intelligence Googlenet in Artificial Intelligence Rnn for Sequence Labeling Statistical Machine Translation of Languages in Artificial Intelligence Top 5 Best Programming Languages for Artificial Intelligence Field Transfer Learning in Artificial Intelligence What is Openai Who Invented Artificial Intelligence Approaches of Artificial Intelligence Artificial Intelligence in Banking Artificial Intelligence Techniques

Differences in Artificial Intelligence

Difference between Intelligence and Artificial Intelligence

Intelligence Artificial Intelligence
It is a natural process or quality given to human beings. It is programmed using human intelligence.
It is an actual hereditary. It is not hereditary but a copy of human intelligence.
A human brain does not require any electricity to show his intelligence. Artificial intelligence requires electricity to get an output.
Execution speed of a human brain is less. Execution speed is higher than the human brain.
Human intelligence can handle different situations in a better way. It is designed to handle only a few types of problems.
A human brain is analog. An artificial brain is digital.

Difference between Strong AI and Weak AI

Strong AI Weak AI
A computer machine gets capable of thinking atleast equal to human beings. A computer machine gets a ‘thinking’ like feature to make it more powerful.
A machine can perform tasks on its own, just like human beings. A machine can perform tasks but need human intervention.
A computer program adds an algorithm itself to act in different situations. Here, tasks to be performed are added manually.
This type of AI allows machines to solve problems in an unlimited domain. This type of AI allows machines to solve problems in a limited domain.  
It is an independent AI which can take the decision on its own. It is dependent on humans and can simulate like human beings.
Currently, strong AI does not exist in the real world. Weak AI is in its advance phase of working.
There is no proper example of it. Example: Automatic car, APPLE Siri, etc.

Difference between Uninformed Search and Informed Search

Uninformed Search Informed Search
It is a search strategy with no additional information. It only contains the current state information. It is a search strategy which carries some additional information with the current state information.
It is less efficient to use uninformed search technique. It is more efficient search technique.
It may take more time to reach the goal node. It mostly reaches the goal state in limited time.
May or may not give an optimal solution. Mostly provides an optimal solution.
It is also known as Blind Search because it searches the goal blindly without having the prior knowledge. It is also known as Heuristic Search as it searches the goal with the help of some prior knowledge.
An uninformed search requires more computation. An informed search require less computation.
BFS, DFS, Uniform cost search are types of uninformed search. Best first search, A* search are types of informed search.

Difference between BFS and DFS

BFS DFS
It extends for Breadth-first search. It extends for Depth-first search.
It searches a node breadthwise, i.e., covering each level one by one. It searches a node depthwise, i.e., covering one path deeply.
It uses the queue to store data in the memory. It uses the stack to store data in the memory.
BFS is a vertex-based algorithm. DFS is an edge-based algorithm.
The structure of a BFS tree is wide and short. The structure of a DFS tree is narrow and long.
The oldest unexpanded node is its first priority to explore it. The nodes along the edge are explored first.
BFS is used to examine bipartite graph, connected path as well as shortest path present in the graph. DFS is used to examine a two-edge connected graph, acyclic graph, and also the topological order.

Difference between A* search and AO* search

A* search AO* search
A* search is an OR graph algorithm. AO* search is an AND/OR graph algorithm.
It finds only one solution. It finds more than one solution by combining one or more branches.
It follows the best-first search strategy. It also follows the best-first search strategy.