Free Essay

Artificial Intelligence

In:

Submitted By Njoro2015
Words 1662
Pages 7
Implementing knowledge bases 1. Concepts in Knowledge representation methods • Some of the techniques applied include o Relational Databases o Production Rules o Logic Representation o Frames o Case-bases • Graphic Representations include: o Semantic Networks o Decision Trees o

2. Production Rules Production Rules are program codes that follow the format IF…THEN…ELSE Eg IF international Conflict Begins AND it is in Middle East THEN oil price goes up.

✓ Symbolically: ✓ IF A AND B THEN C
Example
Consider the following information given by consumers surveying bureau of Kenya
Let the rules and symbols be as follows: ✓ “if one leaves near Muthaiga road (A)and has a plump salary(B) then he is likely to join muthaiga golf club(C). ✓ One can say he leaves near Muthaiga road(A) if he leaves less than 15 kilometers off the road.(D) ✓ The survey also reveals that you have to have a plump income (B) and be a who-is-who in Nairobi(E) so that you can join an exclusive club(F). ✓ If you can join an exclusive club(F) then you are likely to meet politicians(G). ✓ One who meets politicians (G)is said to be well connected(H). ✓ If one can join exclusive (F) and is a who-is-who in Nairobi (E) then he is well connected.(H) ✓ If well connected then (H)one can join Muthaiga golf club (C). ✓ If one can join Muthaiga golf club (C) then he is likely to meet the president (I).”
Thus using symbolic representation, the production-rule knowledge base containing the above information would be as follows. IF A AND B THEN C IF D THEN A IF B AND E THEN F IF F THEN G IF G THEN H IF F AND E THEN H IF H THEN C IF C THEN I

3. LOGIC: Propositional and predicate calculus
a) Propositional Logic. ✓ For a computer to perform reasoning using logic, some method must be used to convert statements and the reasoning process into a form suitable for manipulation. The result is ‘symbolic logic’. ✓ Symbolic Logic is a system of rules and procedures that permit the drawing of inferences from various premises using a variety of logical techniques. ✓ There are two types of computational logic: ✓ Propositional logic ✓ Predicate logic. ✓ NB: Term calculus is sometimes used instead of logic and means ‘system of computing’

Input; premises, facts, propositions etc Output; Inferences, Conclus

Fig. 2.3.1 : Using Logic to Reason.

Representing Simple facts in Propositional Logic

✓ A proposition is a statement that can be evaluated to be true or false. ✓ The statement can be used to derive new propositions of conclusions. ✓ It is usual to use symbols, such as letters of the alphabet or abbreviations, to represent various propositions, or conclusions. ✓ One can use logical connectives such as AND, OR, NOT, IMPLIES, EQUIVALENT. ✓ NB: Propositional Logic deals with complete statements and whether they are true or false. ✓ Example to illustrate propositional logic ✓ Its Raining ✓ Its Sunny ✓ Its Windy

b) Predicate Logic.
Statement, Components, Facts and Variables. ✓ In predicate logic, one can break a statement into component parts. ✓ These parts are either: ✓ Object ✓ Characteristic ✓ Relationship ✓ Some assertion about the object. ✓ In addition, predicate calculus lets us use variables in a symbolic logic statement Example 1 Jane is naughty. She combs her hair in class is (jane, naughty). combs (jane, hair_class).

Example 2 Mwangi travels by matatu, bus, bicycle. travels (mwangi, matatu) travels (mwangi, bus). travels (mwangi, bicycle). travels (mwangi, X). X= {matatu, bus, bicycle}

Note: In Prolog representation, upper case letters represent variables.

Rules representation in Predicate Logic

✓ We can also represent Rules: ✓ Eg. If you show symptoms of sneezing, fever and shivering then you have a disease called flu.

symptom_sneeze ( symptom_fever ( symptom_shiver ( disease (flu)

In Prolog

is(symptom, sneeze) , is(symptom ,fever) , is(symptom, shiver) :- is(disease , flu).

Exercise: Represent the following statements:

1. All prehistoric tribes of central Kenya died when mount Kenya erupted as a volcano in 600 BC. 2. If someone dies, then he is dead at all later times. 3. I was born in 1990. 4. If born before 1970, then the candidate probably sat for ‘A’ levels

Formal Approach- well formed formula (wff). ✓ The representation of real world facts as logical propositions using the standard logic symbols results in a series of clauses known as ‘well-formed formulas’ i.e. wff’s ✓ We occasionally use standard symbols to represent logical connectives. Thus: ( IMPLIES ➢ NOT ← OR ← AND ← FOR ALL ← THERE EXISTS Example 1: Represent the following statements as propositions using ‘well-formed formula’ (wff): People only try to assassinate rulers they are not loyal to. Ochuka tried to assassinate Moi. ??Was Ochuka loyal to Moi?? Ans:

(x: (y: person(x) ( ruler(y) ( (loyalto(x,y) ( tryassassinate(x,y). tryassassinate ( ochuka, moi). ?-: loyalto (ochuka, moi ). Note ✓ The above statements seem as if they can yield a response (‘NO’) but it may not because we don’t know if Ochuka is a person and Moi was a ruler. ✓ Therefore, we need to explicitly state the two facts for evaluation to be successful. ✓ Example 2 ‘ All men are people’

(X: Man(X) ( Person(X)

Example 3 ‘If it is not raining, then it is sunny’

(RAINING ( SUNNY Is converse true? RAINING (( SUNNY

Example 4 All Kenyans are loyal to Kibaki or dislike him

( x : Kenyan(x)( loyalto(x, Kibaki)( dislike(x, Kibaki).

Example 5: Every one is loyal to someone

(x : (y : loyalto (x,y)

Further examples and also incorporating prolog implementation
Example 1 IF there is a lot of oil demand in China THEN global oil prices rise.

(china_oil_demand, a_lot) ( will(global_oil_price, rise).

In Prolog

is (china_oil_demand, a_lot) :- will(global_oil_price, rise).
Example 2 Either Kenya, Uganda or Tanzania will join the U.N. security council.

(Kenya ( uganda ( tanzania)( join_council

In Prolog.

will( join_council , kenya) ; will ( join_council, uganda) ; will( join_cou ncil, tanzania).
Example 3 For Inflation to occur there must be bad export business, poor economic management and weak currency.

bad_export ( poor_economic_management ( weak_currency ( inflation

In Prolog

(bad_export , poor_economic_management , weak_currency) :- inflation

Exercise 1. Write the meaning of the following statement (x : (t1 : (t2 : mortal (x) ( born(x , t1) ( greater_than( t2 - t1 , 150) ( dead(x , t2). 2. Write the following rule using production rule, standard logic symbols and then as prolog statement.
“Someone is sister of another if that person is a female and both have same father and same mother”

3. Makori is a man. He is a Kisii. All Kisiis are Kenyans. He must be a Kenyan ANS (x : (y: kisii(x) ( kenyan(y) ( man(makori) ( is(makori, x) ( is(x, y) (is (makori, y)

a) Applications to Logic Design and formal system specifications.

✓ The above symbolic representation is normally used to represent simple facts, complex facts (have to be broken down), rules, relationships (predicates) and other types of knowledge. ✓ It is useful in AI because we can use the representation and then perform computations also known as inferencing (or reasoning). ✓ Some popular reasoning strategies include: ✓ Modus Ponens ✓ Matching ✓ Forward and backward chaining ✓ Resolution ✓ Natural deduction ✓ We can write applications that use the above techniques to solve practical problems. ✓ Expert Systems can be programmed easily using above techniques. ✓ Systems that require matching eg pattern matching. ✓ Systems that use ‘look-ups’ eg Language Translators, Dictionaries, Games, vision systems etc

4. Frames
The method is commonly known as Frame Representation Scheme ✓ A frame is a collection of attributes, usually called slots. ✓ The slots are associated with facets. Facets contain values, constraints in to the values, procedures etc ✓ We usually build a frame system from a collection of frames that are connected to each other by virtue of the fact that the value of an attribute of one frame may be another frame. ✓ Set theory provides a good basis for understanding frame systems. ✓ Each frame may be implemented as a class (or a set) in an object oriented environment.

Fig. 2.3.2 Illustrating a Frame System Frames are represented in hierarchies and show inheritance 5. Semantic Networks Semantic networks are graphic representations that show objects their relationships or meanings. Example Consider the following information “ In the animal world, carnivores such as lions and leopards hunt and eat herbivores such as zebras and wild beast. Thus some animals are hunters and some are hunted, and generally speaking carnivores hunt herbivores. However there are many exceptions to this rule. Elephants, which are herbivores, are rarely hunted because of their size. Nor are bears, which are not normally meat eaters and therefore basically herbivores. Bears will catch and eat other animals when opportunity arises.” i) Draw a well-labeled semantic network to represent the above information.

All connections are named isa.
Note: Semantic networks can easily be converted to prolog databases by converting the relationships into predicates. ii) Write a knowledge base in PROLOG that can be used to represent the above information.
Ans
Isa(carnivore,lion). Isa(carnivore,leopard). Isa(carnivore,bear). Isa(hunter,lion). Isa(hunter,leopard). Isa(hunter,bear). Isa(herbivore,elephant). Isa(herbivore,zebra). Isa(herbivore,wildebeeste). Isa(herbivore,bear). Isa(hunted,zebra). Isa(hunted,wildebeeste).
Example 2
Consider the following information “ Parents in the U.K. are faced with a variety of schools. There are primary schools for young children and secondary schools for older children. Younger children can go to public primary schools or private schools. Older ones mostly go to comprehensive schools, but there are also grammar schools for clever pupils, city technology colleges for clever ones, and fee paying public schools. Grammar and public schools offer a more academic education.”

From the above information i) Draw a well labeled semantic network

Goto is_a Is_a goto

Is_a

Is_a Goto Is_a Is_a

Goto is_a

Is_a is_a

-----------------------
Logical Process

FRAME:FACULTIES

FRAME: UNIVERSITY

SCI

FACULTIES

POPULATION: 6,000

Engineering

FRAME: SCI

ADIMISS. CRITERIA

MEDICINE

Admission:

Lecturers: 22

FRAME:ADMISSION

GRADES

PROCESS

Lion

Zebra

Hunted

Hunter

Carnivore

Bear

Herbivore

Leopard

Wildebeest

Elephant

Comprehensive sch

Young_ children

Older children

Public pri school

Grammar sch

Primary school

Sec. school

Private school

CTC

Clever

Academic pupils

Fee paying

Public school

Similar Documents

Free Essay

Artificial Intelligence

...Faith Brown September 9, 2014 Artificial Intelligence is something that has been around for quite some time. It is simply the science of making machine imitate human thinking and behavior. There are many types of businesses and organizations that use artificial intelligence. Many of them are government organizations but are not limited to hospitals and local businesses. Artificial intelligence can be used for the simplest of things like counting inventory or to the more complex of things such as reading electrocardiograms. With artificial intelligence, we have been able to reduce the time that it takes an actual human to do something. These systems are in place so that we spend more time on the more critical things. There are four types of artificial intelligence. The four types are expert systems, neural networks (and fuzzy logic), genetic algorithms, and agent-based technologies. All of the these systems have their benefits as well as their not so good features. For starters, we will examine expert systems. Expert systems, which is also referred to as knowledge-based systems, is an artificial intelligence system that applies reasoning capabilities to reach a conclusion. These systems are used for diagnosing problems. They also help with coming up with a solution to the problem. These systems are built for a specific domain that they will be ran on. The knowledge base for these systems contain both factual and heuristic knowledge. This means that the factual information could...

Words: 1325 - Pages: 6

Free Essay

Artificial Intelligence

...1.INTRODUCTION: Artificial Intelligence is the science and engineering of making intelligent machines, especially intelligent computer programs. It includes people,procedure,hardware,software,data and knowledge needed to develop computer systems and machines that demonstrated characteristics of intelligence.It is related to the similar task of using computers to understand human intelligence, but AI does not have to confine itself to methods that are biologically observable. Intelligence is basically the computational part of the ability to achieve goals in the world. Varying kinds and degrees of intelligence occur in people, many animals and some machines.There is no solid definition of intelligence relating it to human intelligence. The problem is that it cannot yet be characterize in general what kinds of computational procedures can be called intelligent. We understand some of the mechanisms of intelligence and not others. Sometimes Artificial Intelligence is about simulating human intelligence but not always.On the one hand, we can learn something about how to make machines solve problems by observing other people or just by observing our own methods. On the other hand, most work in AI involves studying the problems the world presents to intelligence rather than studying people or animals. AI textbooks define the field as "the study and design of intelligent agents where an intelligent agent is a system that perceives its environment and takes actions that maximize its...

Words: 2505 - Pages: 11

Free Essay

Artificial Intelligence

...Artificial Intelligence   Artificial intelligence is an advanced branch of science which enables digital computers to perform complex tasks that are usually associated with requiring human intelligence. These tasks can vary from game playing to robotics. The best way to describe A.I is by comparing it to a human brain, digital computers consist of a network of switches and computers make decisions by using on/off switches. The basic element of the brain, the neuron also uses two state operations. This means that the human thought process can be linked to transistors within a computer. One definition of Artificial intelligence is “The science of making machines do things that require intelligence if done by men” (Marvin Minskey). The important word in this definition is INTELLIGENCE as there can be different perceptions of intelligence such as the ability to learn and acquire knowledge or just plain common sense. Some other researchers believe that A.I is just the duplication of human thought without any intelligence.  Artificial intelligence is different from normal programming by the way it solves a problem. A normal programming language such as BASIC must use a step by step method to solve a problem. This normally means that you will have to flow chart the solution then translate it into the BASIC programming language that carries out the solution. This step by step programming is called algorithmic programming. An algorithm is a well defined set of rules to solve a problem...

Words: 969 - Pages: 4

Free Essay

Artificial Intelligence

...computers can’t replace people. But with artificial intelligence, computers could be trained to think like humans do. Artificial intelligence (AI) is the branch of computer science concerned with making computers behave like humans. Artificial intelligence allows computers to learn from experience, recognize patterns in large amounts of complex data and make complex decisions based on human knowledge and reasoning skills. Currently, no computers exhibit full artificial intelligence (that is, are able to simulate human behavior). AI research is highly technical and specialized, deeply divided into subfields that often fail to communicate with each other. In 1956, John McCarthy, who is thought to be the father of Artificial Intelligence, organized a conference where intellectuals gathered to learn of this phenomenon. This laid the foundation for the advancements in artificial intelligence today. Artificial intelligence has become an important field of study with a wide spread of applications in fields ranging from medicine to agriculture. The central problems of AI traits are reasoning, knowledge, planning, learning, communication, perception and the ability to move and manipulate objects. The greatest advances have occurred in the field of games playing. Today artificial intelligence is used in our homes and in sophisticated establishments or businesses. There are many advantages and disadvantages of the use of artificial intelligence in business and in our day to day lives. ...

Words: 546 - Pages: 3

Premium Essay

Artificial Intelligence

...Artificial Intelligence: Past, Present and Future Alana Boggan INF 103 Sabahudin Tricic July 25, 2011 Abstract Technology, over time, has become more advanced. As technology has risen, so has man’s curiosity for advancement of what technology can do for mankind. In this exploration, artificial intelligence was created. In researching and exploring the past of artificial intelligence, mankind can make assumptions about the advances in the future. The past, with curiosity of humans, has lent itself to the artificial intelligence we have today and the endless possibilities for artificial intelligence in the future. Artificial Intelligence (AI) is becoming a constant part of life as technology advances. Webster defines artificial intelligence as “the intelligence of machines and the branch of computer science that aims to create it” (Wikipedia, 2010). When assessing AI, one must look at the past and present. Acquiring knowledge about the past and present of AI, the future of this ever-changing field of science allows thoughts of endless possibilities and unimaginable devices of the future; therefore, by studying and researching the advancement of this field from its past to its present, predictions for this field can be made. Method I researched information on the past, present, and future for the field of Artificial Intelligence. In researching the past of the scientific and computer field of artificial intelligence...

Words: 1718 - Pages: 7

Premium Essay

Artificial Intelligence

...ARTIFICIAL INTELLIGENCE The computer revolution has everyday things out of the way letters are in our banks, governments, agencies and credit affects of our finances to the process of writing. The development of artificial intelligence is only a small percentage of the information revolution and how the company deals with, learn and contains artificial intelligence. It will be just the beginning of great influence and success of the computer revolution. A uniform artificial intelligence, or AI, definition is that the computer simply imitate the behavior of people who would be intelligent, if a person has done. But even within this definition, various problems and views on how to prevent the interpretation of the results of the AI programs, the scholars and critics. The most common and natural for AI research approach is for each program, what it can do, you ask? What are the actual results of human intelligence? For example, what counts is a chess program that is good. Is it possible that chess grandmaster has expired? There is also a more structured approach for the evaluation of artificial intelligence, began at the door of artificial intelligence to open contribution to the world of science approach. According to this theoretical approach, what matters are not the input-output relationships of the computer, but also what the program you may contact us using the genuine human knowledge (Ptack, 1994) call will tell. From this point of artificial intelligence, not only...

Words: 999 - Pages: 4

Premium Essay

Artificial Intelligence

...Artificial Intelligence The computer revolution has influenced everyday matters from the way letters are written to the methods in which our banks, governments, and credit card agencies keep track of our finances. The development of artificial intelligence is just a small percentage of the computer revolution and how society deals with, learns, and incorporates artificial intelligence. It will only be the beginning of the huge impact and achievements of the computer revolution. A standard definition of artificial intelligence, or AI, is that computers simply mimic behaviors of humans that would be regarded as intelligent if a human being did them. However, within this definition, several issues and views still conflict because of ways of interpreting the results of AI programs by scientists and critics. The most common and natural approach to AI research is to ask of any program, what can it do? What are the actual results in comparison to human intelligence? For example, what matters about a chess-playing program is how good it is. Can it possibly beat chess grand masters? There is also a more structured approach in assessing artificial intelligence, which began opening the door of the artificial intelligence contribution into the science world. According to this theoretical approach, what matters is not the input-output relations of the computer, but also what the program can tell us about actual human cognition (Ptack, 1994). From this point of view, artificial...

Words: 1106 - Pages: 5

Free Essay

Artificial Intelligence

...Artificial Intelligence Growing up, I watched and enjoyed movies such as Short Circuit, Space Camp, and the Terminator. There would be no doubt in my mind that we as humans would be able to create artificial intelligence. I figured it was a no brainer as a watched the robots on the big screen think and make decisions on their own without any human input. Later on, as an adult you begin to realize that movies are fiction and it would take a very intelligent human to create artificial life that could make its own decisions and function like a human. With the help of Hollywood, when we think of artificial intelligence, we tend to think of immense robots that walk, talk, appear human, and also make friends with people such as a human would do. We need to examine the meaning of the word artificial intelligence. All textbooks define the field as "the study and design of intelligent agents" where an intelligent agent is a system that perceives its environment and takes actions that maximize its chances of success. John McCarthy, who coined the term in 1956, defines it as "the science and engineering of making intelligent machines.” Reading these definitions brings a greater understanding as to what artificial intelligence is and the fact remains that it has been around a lot longer than we think. I remember my mother buying a vacuum in 2002 called the iRobot. It would roam around the house without a handle or a remote control and vacuum the carpet. The iRobot would know when...

Words: 422 - Pages: 2

Premium Essay

Artificial Intelligence

...SCM Research paper | Shreerang Datar Supply Chain Management (SCHM 6210) Spring 2016 RESEARCH PAPER “ARTIFICIAL INTELLIGENCE IN SUPPLY CHAIN MANAGEMENT” By Shreerang Datar (NUID 001649801) 04/14/2016 1 SCM Research paper | Shreerang Datar Table of Contents 1. Executive Summary……………………………………………………3 2. Introduction…………………………………………………………….4 3. Background…………………………………………………………….5 4. Findings………………………………………………………………...6 a. Artificial Intelligence Tools……………………………………..7 b. Business Examples…………………………………………….10 5. Future Trends and Challenges………………………………………...18 6. Conclusion……………………………………………………………19 7. Bibliography…………………………………………………………..20 2 SCM Research paper | Shreerang Datar Executive Summary: Surpassing the limits of business intelligence, artificial intelligence (AI) focuses on developing an algorithmic approach in decision making. This technology has come so far that inculcating human competencies like logic, reasoning, simulation and analytical thinking in a machine seems to be in reach. In the field of Supply Chain Management this technology is placing a strong foot in achieving creative optimization and automation in different supply chain processes. AI has found its applications in various SCM aspects which include Inventory management, Network design optimization, Logistics strategy formulation, demand forecasting, etc. It is designed to generate a step-wise mechanism for problem solving in which it defines the problem...

Words: 3566 - Pages: 15

Premium Essay

Artificial Intelligence

...Artificial Intelligence (AI), a branch of computer science, is the study of intelligent systems (i.e. software, computers, robots, etc.). Alternatively, it may be defined as "the study and design of intelligent agents" where an intelligent agent is a system that perceives its environment and takes actions that maximize its chances of success. John McCarthy, who coined the term in 1955, defines it as "the science and engineering of making intelligent machines." AI research is highly technical and specialised, deeply divided into subfields that often fail to communicate with each other.Some of the division is due to social and cultural factors: subfields have grown up around particular institutions and the work of individual researchers. AI research is also divided by several technical issues. There are subfields which are focused on the solution of specific problems, on one of several possible approaches, on the use of widely differing tools and towards the accomplishment of particular applications. The central problems of AI include such traits as reasoning, knowledge, planning, learning, communication, perception and the ability to move and manipulate objects.General intelligence (or "strong AI") is still among the field's long term goals. Currently popular approaches include statistical methods, computational intelligence and traditional symbolic AI. There are an enormous number of tools used in AI, including versions of search and mathematical optimization, logic, methods...

Words: 334 - Pages: 2

Premium Essay

Artificial Intelligence

...Christopher Powell Artificial Intelligence AI is defined as the ability of a computer or machine to think for itself, and mimicking the thought processes a human might have only smarter. The idea that a computer has the ability to react more intelligently than a human being has fascinated us for several centuries. There are thoughts of robotic red blood cells to create a scientifically generated longer life span or the ability to conquer certain disease.[1] Although there have been major advancements in AI and technology in this century that we never dreamed possible, we have yet to prove that science and engineering have the ability to become smarter than the human brain. Evidence of A.I. is said to be traced back to ancient Egypt but the ability to create machine intelligence was not developed until 1941 with the first electronic computer in 1955, Newell and Simon developed The Logic Theorist.[2] The Logic Theorist was a program that demonstrated problems as a tree and would attempt to solve them by choosing the best possible solution, based on each branch of the tree. It was in 1956 when the term “Artificial Intelligence” was first coined at the Dartmouth conference, where the proposed 2 month, 10-man study of AI would be carried out.   The conference, in which John McCarthy called upon the leading researchers to discuss topics which were such a new topic to the imagination, he coined a new phrase for it; Artificial Intelligence (McCarthy, J., Minsky...

Words: 2933 - Pages: 12

Free Essay

Artificial Intelligence

...Introduction to artificial Intelligence Intelligence: Definition 1. - Its ability to learn or understand or deal with new or trying situations. - Skilled use of reason. 2. It’s the ability to apply knowledge to manipulate one’s environment or to think abstractly as measured by object criteria (as test) Views of intelligence 1. Autonomous movement – Movement of object; Eg Robot intelligently E.g vaucansor (18th Century), Shaker – 1970, Sony Aibo (1998) 2. Thinking – Ability to use brain. ▪ Eg Deep Blue defeats Garry Kasparov- 1997 ▪ Eg In Playing games 3. Playing Games A computer may be said to be intelligent if it beats the user. Types of Intelligence 1. Linguistic-Verbal intelligence- Ability to communicate effectively, use of in different forms, sensitive means. 2. Logical – Mathematical intelligence – Ability to carry out computations. 3. Musical 1 – Playing piano, singing, recognize non verbal. 4. Spatial – Ability to work with minimal information provided(scarce information) 5. Intrapersonal 1 – Able to understand your self, read others moods, emotions. 6. Interpersonal 1 – Ability to relate well with others. 7. Bodily kinesthetic Intelligence- body flexibility – acrobatics. NB: 1. The above types are referred to as multiple Intelligence Theory by Howard Gardener. 2. People have different strength in each intelligence area. This demonstrates different talents, as people...

Words: 3260 - Pages: 14

Premium Essay

Artificial Intelligence

...ARTIFICIAL INTELLIGENCE Paper Presentation On “Artificial Intelligence(AI)” INDEX :1. ABSTRACT. 1 ARTIFICIAL INTELLIGENCE ARTIFICIAL INTELLIGENCE 2. INTRODUCTION. 3. HISTORY OF AI. 4. CATEGORIES OF AI. A. CONVENTIONAL AI. B. COMPUTATIONAL INTELLIGENCE (CI). 5. FIELDS OF AI. 6. AAAI. 7. APPLICATIONS. ABSTRACT This paper is the introduction to Artificial intelligence (AI). Artificial intelligence is exhibited by artificial entity, a system is generally assumed to be a computer. AI systems are now in routine use in economics, medicine, engineering and the military, as well as being built into many common home computer software applications, traditional strategy games like computer chess and other video games. We tried to explain the brief ideas of AI and its application to various fields. It cleared the concept of computational and conventional categories. It includes various advanced systems such as Neural Network, Fuzzy Systems and Evolutionary computation. AI is used in typical problems such as Pattern 2 ARTIFICIAL INTELLIGENCE ARTIFICIAL INTELLIGENCE recognition, Natural language processing and more. This system is working throughout the world as an artificial brain. Intelligence involves mechanisms, and AI research has discovered how to make computers carry out some of them and not others. If doing a task requires only mechanisms that are well understood today, computer programs can give very impressive performances on these tasks. Such programs should...

Words: 1713 - Pages: 7

Free Essay

Artificial Intelligence

...ARTIFICIAL INTELLIGENCE Name INF 103: Computer Literacy Instructor: Bonita Spight-Williams April 13, 2013 Artificial Intelligence What does our future hold in the area of Artificial Intelligence? “The goal of many computer scientists since the mid–20th century has been to create a computer that could perform logical operations so well that it could actually learn and become sentient or conscious. The effort to achieve this is called artificial intelligence, or AI.” (Bowles, 2010). AI is a branch of computer science that deals with developing machines that solve complex problems in a more human-like manner. This involves computers adopting characteristics of human intelligence. However, it has many associations with other fields of study such as Math, Psychology, Biology, and Philosophy. Many scientists believe that by combining these various fields of study they will ultimately succeed in creating an artificially intelligent machine. A lot of scientists believe that the key to figuring out artificial intelligence is to copy the basic function of the human brain. While it is certainly evident that a computer can acquire knowledge from a program or programmer, it is the new developments in AI that will enable it to apply the knowledge. The new advancements in AI will hopefully enable these machines to not only possess the knowledge, but also understand how to utilize it in a number of situations. Artificial Intelligence researchers analyze human...

Words: 1235 - Pages: 5

Free Essay

Artificial Intelligence

...AND TECH ARTIFICIAL INTELLIGENCE (Biologically Inspired Intelligent Robots Using Artificial Muscles) PRESENTED BY: Praveen Kumar J Sai Krishna A B.Tech III/IV B.Tech III/IV j_pravee@yahoo.com adimula_saikrishna@yahoo.com Abstract: Artificial Intelligence is a branch of Science which deals with helping machines finds solutions to complex problems in a more human-like fashion. This generally involves borrowing characteristics from human intelligence, and applying them as algorithms in a computer friendly way. A more or less flexible or efficient approach can be taken depending on the requirements established, which influences how artificial the intelligent behavior appears. Humans throughout history have always sought to mimic the appearance, mobility, functionality, intelligent operation, and thinking process of biological creatures. This field of biologically inspired technology, having the moniker biometrics, has evolved from making static copies of human and animals in the form of statues to the emergence of robots that operate with realistic appearance and behavior. This paper covers the current state-of-the-art and challenges to making biomimetic robots using artificial muscles. Keywords: EAP, artificial muscles, artificial intelligence, biometrics Introduction: ...

Words: 3034 - Pages: 13