Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

aima-talk · AI: A Modern Approach: Help for the text

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 101 - 130 of 946   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#101 From: "schokn" <schokn@...>
Date: Thu Oct 24, 2002 3:16 am
Subject: open problems in AI
schokn
Send Email Send Email
 
What are some of the top open problems in AI?
(I've searched google for this and find mostly vague
stuff like "what is the nature of intelligence" etc.)

In 1900, Hilbert listed what he considered to be
some of the most important open problems in mathematics
and this led to a lot of groundbreaking research...

It would be nice to have a list like Hilbert's of
concrete important open problems or challenges in AI...

#102 From: Peter Norvig <peter@...>
Date: Thu Oct 24, 2002 5:25 am
Subject: Re: open problems in AI
norvig
Send Email Send Email
 
A Google search for
	 "artificial intelligence" "challenge problem"
yields interesting results.  (For the first result, I had to use the
"cached" feature; I don't know if this is a temporary or persistent
problem with the Microsoft Research page.)

These challenge problems are more practical-oriented than Hilbert's
problems, but then AI is more practically-oriented than Math.

-Peter

On Wednesday, October 23, 2002, at 08:16 PM, schokn wrote:

> What are some of the top open problems in AI?
> (I've searched google for this and find mostly vague
> stuff like "what is the nature of intelligence" etc.)
>
> In 1900, Hilbert listed what he considered to be
> some of the most important open problems in mathematics
> and this led to a lot of groundbreaking research...
>
> It would be nice to have a list like Hilbert's of
> concrete important open problems or challenges in AI...

#103 From: David Faden <dfaden@...>
Date: Tue Oct 29, 2002 4:57 am
Subject: Categories and xor
gilbertnews
Send Email Send Email
 
Hi,

On page 231 of AIMA, the authors write, "One can even have categories
of categories of categories, but they are not much use." If
DomesticatedSpecies was of Species, wouldn't this make Species a
category of categories of categories? If so, why wouldn't it be useful?

On page 238 of AIMA, the authors write, "T(p _V_ q, e) <=> T(p, e) V
T(q, e)." From the text I got the impression that "_V_" represents
exclusive or. Is it supposed to be exclusive or? Then, should it be
"T(p _V_ q, e) <=> T(p, e) _V_ T(q, e)" instead of what's written?

Thank you.

David

#104 From: "Sorathia Vikram" <vsorathia@...>
Date: Mon Nov 4, 2002 4:57 pm
Subject: Expert system in Visual prolog/Matlab
vsorathia
Send Email Send Email
 
HI,
I wish you all a Very Happy Diwali.
I am a Ph D student, interested in application AI (Expert Systems)
and GIS in Disaster management. I have considerably good experience
in GIS Image processing and environmental planning type of things,
but  I am quite novice as far as Expert Systems building tools are
concerned.
I am right now trying to use Visual Prolog 5.2 and Matlab 6. I am
searching for similar kind of effort on the net but was not quite
successful in finding the same except some abstracts. Can anyone
help me find out any such resource on the net?
Thanks a lot in advance.
Vikram Sorathia

#105 From: "flamesplash" <flamesplash@...>
Date: Sun Nov 10, 2002 3:27 am
Subject: Diagnostic Inferences calculation - Burglary given JohnCalls
flamesplash
Send Email Send Email
 
Hi there.  I'm having some trouble figuring out the calculation for
an example in the book.  It's on page 447 and is

P( Burglary|JohnCalls ) = .016.

I keep getting .0008 which seems to say I'm kind of on the right
trail since I'm off by a factor of 20.

#106 From: "Naresh_521204" <naresh_521204@...>
Date: Sat Nov 16, 2002 3:56 pm
Subject: History LIST
Naresh_521204
Send Email Send Email
 
Hi,
I just wanted to know what data structure is best for
implementing the history-list in the various searches
such as DFS, BFS and A*
thanks

#107 From: "Peter Norvig" <peter@...>
Date: Sat Nov 16, 2002 4:25 pm
Subject: Re: History LIST
norvig
Send Email Send Email
 
You could look at the online code, and ypu'd see that for depth-first search
you want a stack, for breadth-first a queue, and for A* a priority queue.

http://aima.cs.berkeley.edu/code/search/algorithms/simple.lisp
http://www.norvig.com/python/search.html

-Peter

----- Original Message -----
From: "Naresh_521204" <naresh_521204@...>
To: <aima-talk@yahoogroups.com>
Sent: Saturday, November 16, 2002 7:56 AM
Subject: [aima-talk] History LIST


> Hi,
> I just wanted to know what data structure is best for
> implementing the history-list in the various searches
> such as DFS, BFS and A*
> thanks
>
>
>
> To unsubscribe from this group, send an email to:
> aima-talk-unsubscribe@yahoogroups.com
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>

#108 From: "Naresh_521204" <naresh_521204@...>
Date: Sat Nov 16, 2002 4:52 pm
Subject: Re: History LIST
Naresh_521204
Send Email Send Email
 
Hi,
Thanks for the reply
For the dfs i am using 2 datastrucutes
one for storing the nodes that have not been expanded yet
which is a queue
and one for the already expanded nodes which in this case is
a history list  which i was implementing as a queue but we have
to use other datastructres for implementing it






--- In aima-talk@y..., "Peter Norvig" <peter@n...> wrote:
> You could look at the online code, and ypu'd see that for depth-
first search
> you want a stack, for breadth-first a queue, and for A* a priority
queue.
>
> http://aima.cs.berkeley.edu/code/search/algorithms/simple.lisp
> http://www.norvig.com/python/search.html
>
> -Peter
>
> ----- Original Message -----
> From: "Naresh_521204" <naresh_521204@y...>
> To: <aima-talk@y...>
> Sent: Saturday, November 16, 2002 7:56 AM
> Subject: [aima-talk] History LIST
>
>
> > Hi,
> > I just wanted to know what data structure is best for
> > implementing the history-list in the various searches
> > such as DFS, BFS and A*
> > thanks
> >
> >
> >
> > To unsubscribe from this group, send an email to:
> > aima-talk-unsubscribe@y...
> >
> >
> >
> > Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >

#109 From: "Naresh_521204" <naresh_521204@...>
Date: Tue Nov 26, 2002 5:04 pm
Subject: Evaluation Function for Mancala
Naresh_521204
Send Email Send Email
 
Hi,
Can any one suggest a good evaluation function for the mancala game
other then the difference in the number of stones in the mancalas of
the players
thanks

#110 From: "ulitjd <ulitjd@...>" <ulitjd@...>
Date: Wed Dec 11, 2002 7:21 pm
Subject: Could any one tell me about The Real-Time A* Search?
ulitjd
Send Email Send Email
 
Could any one tell me about The Real-Time A* Search?
I would like to know about the idea and algorithm detail.
It's so good, If there write in Pascal, C or C++ Language.

#111 From: "A.T. Murray <uj797@...>" <uj797@...>
Date: Sat Dec 21, 2002 4:32 pm
Subject: AIMA + AI4U = GOFAI
mentifex
Send Email Send Email
 
We congratulate the hard-working authors of AIMA
on the illustrious publication of their second edition
and we recommend AI4U as a companion AI experimentation manual.

AIMA teaches the in-depth background of artificial intelligence,
while AI4U, newly published in November of 2002, introduces an
abstract AI theory of mind and its implementation in primitive
http://www.mentifex.virtualentity.com/jsaimind.html AI software.

In co-operation with the senior AIMA textbook, AI4U is a junior
AI textbook available by print-on-demand (POD) from its publisher at
http://www.iuniverse.com/bookstore/book_detail.asp?isbn=0595259227 or
from Barnes and Noble among the wide gamut of general AI textbooks at
http://search.barnesandnoble.com/bookSearch/isbnInquiry.asp?
ISBN=0595259227 .

Please view a mention of AI4U in AIMA-talk not as a hostile intrusion
but as a collaborative approach to advancing the AI state of the art.

When you have obtained the second edition of AIMA,
if you no longer need your copy of the first edition,
please consider releasing it into the wild as a runaway
http://www.bookcrossing.com/search/?isbn=0131038052 book.

If you find AI4U worthy of memetic propagation, please
consider its minimal price as a shareware donation and
release your first or second copy into the wild as an AI
http://www.bookcrossing.com/search/?isbn=0595259227 manual.

#112 From: "Luis Soares <luizsoarez@...>" <luizsoarez@...>
Date: Sun Dec 22, 2002 8:17 pm
Subject: AIMA 2nd edition
luizsoarez
Send Email Send Email
 
Hi there.


I saw in Amazon.com that AIMA's 2nd edition was to be published on
December 19, 2002. Is this date correct? Because in amazon the book is
still not ready for delivery (in fact, they say it will only be
possible to ship it on August 2003).

I also read many reviews about this book that had complains about the
binding of the 1st edition. Is this problem corrected on the 2nd edition?


Thanks for your your time and merry christmas
:)

#113 From: Peter Norvig <peter@...>
Date: Sun Dec 22, 2002 11:35 pm
Subject: Re: AIMA 2nd edition
norvig
Send Email Send Email
 
It was supposed to be in-stock on the 19th, but I heard from the
publisher there will be a slight delay until tomorrow, Dec 23.  There
was a bad batch of glue in the first printing of the first edition, but
that shouldn't happen again.

Happy holidays,
-Peter

Luis Soares wrote:

>Hi there.
>
>
>I saw in Amazon.com that AIMA's 2nd edition was to be published on
>December 19, 2002. Is this date correct? Because in amazon the book is
>still not ready for delivery (in fact, they say it will only be
>possible to ship it on August 2003).
>
>I also read many reviews about this book that had complains about the
>binding of the 1st edition. Is this problem corrected on the 2nd edition?
>
>
>Thanks for your your time and merry christmas
>:)
>
>
>To unsubscribe from this group, send an email to:
>aima-talk-unsubscribe@yahoogroups.com
>
>
>
>Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
>

#114 From: azam rabiei <azamrabiei@...>
Date: Wed Dec 25, 2002 2:41 pm
Subject: Re: Could any one tell me about The Real-Time A* Search?
azamrabiei
Send Email Send Email
 
hello
I read about Real-Time A* Search in a famous book:

Artificial Intelligence :A new Approach
       By: Russel & Norving

--- "ulitjd <ulitjd@...>" <ulitjd@...>
wrote:
> Could any one tell me about The Real-Time A* Search?
> I would like to know about the idea and algorithm
> detail.
> It's so good, If there write in Pascal, C or C++
> Language.
>
>


__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

#115 From: "A.T. Murray <uj797@...>" <uj797@...>
Date: Sun Dec 29, 2002 6:40 pm
Subject: AIMA 1st edition -- used
mentifex
Send Email Send Email
 
After some experimentation, the following AIMA URL has been derived:

http://dogbert.abebooks.com/servlet/BookSearchPL?ph=2&sn=0131038052

as the briefest possible link for finding used copies of AIMA

at the Advanced Book Exchange -- a large network of bookstores.

Note please that you may return in future to this unchanging link
and see varying results as booksellers add and drop AIMA 1st edition.

The AIMA international standard book number (ISBN=0131038052) was

used as a test case likely to generate multiple results after I

"seeded" one ABE member bookstore with a copy of the AI4U textbook:

http://dogbert.abebooks.com/servlet/BookSearchPL?ph=2&sn=0595259227

AIMA + AI4U = good old-fashioned artificial intelligence (GOFAI :-)

#116 From: "flamesplash <flamesplash@...>" <flamesplash@...>
Date: Tue Jan 7, 2003 2:30 am
Subject: TD-Update Reward calculation
flamesplash
Send Email Send Email
 
In AIMA c1995

Figure 20.6 makes use of REWARD, however I don't see how this table
is calculated or updated when 20.6 is used in 20.2.

Additionally, in 20.6 is the U[] (utility) of all terminal states
simply their Utility?  The Running-Average calculation doesn't look
like it will ever actually change if the reward stays the same, and I
don't really see how the reward can change.

Any clarifications would be appreciated.

-shane

#117 From: "richscherl <rscherl@...>" <rscherl@...>
Date: Fri Jan 10, 2003 10:02 pm
Subject: Java Code
richscherl
Send Email Send Email
 
The link on the web page for the text for Java Code is broken.
Is there code available?

Rich

Rich Scherl

#118 From: Peter Norvig <peter@...>
Date: Sat Jan 11, 2003 1:58 am
Subject: Re: Java Code
norvig
Send Email Send Email
 
The link is fixed now (http://aima.cs.berkeley.edu/java.html) but
there's not much useful code there.  Have a look and see if there's
anything you find useful. The agents package (3850 lines of Java) and
search package (1394 lines) are your best bets.

richscherl wrote:

>The link on the web page for the text for Java Code is broken.
>Is there code available?
>
>Rich
>
>Rich Scherl
>
>
>To unsubscribe from this group, send an email to:
>aima-talk-unsubscribe@yahoogroups.com
>
>
>
>Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
>

#119 From: "flamesplash <flamesplash@...>" <flamesplash@...>
Date: Sat Jan 11, 2003 3:49 am
Subject: TD Update propograting rewards
flamesplash
Send Email Send Email
 
In fig 20.6 I don't see how in a case like the game of tic tac toe
where the rewards are only ever gained at the terminal state how the
rewards are ever propogated from the terminal nodes.

In the TD-Update when you hit a terminal all you do is update the
running average, I don't ever see a case where the terminal state and
it's sucessor are used together to modify the sucessors utility, so I
don't see how any of the utilities actually get modified.

Any clarification would be appreciated.

#120 From: "hodgkinsonlt <hodgkinsonlt@...>" <hodgkinsonlt@...>
Date: Sun Jan 12, 2003 4:01 pm
Subject: Question about Errata list
hodgkinsonlt
Send Email Send Email
 
Dear Drs. Russell and Norvig,

I was wondering if you have a published errata list for AIMA, second
edition. I have discovered some typographical errors and errors of
referencing the wrong pages and chapters.  I would like to refer to
an errata list so that I can avoid mentioning errors that have
already been reported.

Thank you very much.

Luke Hodgkinson: a student at Hiram College

#121 From: Berend Dekens <dekens@...>
Date: Sun Jan 12, 2003 7:34 pm
Subject: Deadline: Exercise 8.15 and 8.16
dekens@...
Send Email Send Email
 
I've got a deadline for excercises 8.15 and 8.16 in 2 days but I still
don't have a clue how to put those sentences in Java code...

Does anybody have a solution/tip/hint for me?

#122 From: "Peter Norvig" <peter@...>
Date: Mon Jan 13, 2003 6:21 am
Subject: Re: Question about Errata list
norvig
Send Email Send Email
 
We don't have an errata list yet; you can help start it.

Thanks,
-Peter Norvig

----- Original Message -----
From: <hodgkinsonlt@...>
To: <aima-talk@yahoogroups.com>
Sent: Sunday, January 12, 2003 8:01 AM
Subject: [aima-talk] Question about Errata list


> Dear Drs. Russell and Norvig,
>
> I was wondering if you have a published errata list for AIMA, second
> edition. I have discovered some typographical errors and errors of
> referencing the wrong pages and chapters.  I would like to refer to
> an errata list so that I can avoid mentioning errors that have
> already been reported.
>
> Thank you very much.
>
> Luke Hodgkinson: a student at Hiram College
>
>
> To unsubscribe from this group, send an email to:
> aima-talk-unsubscribe@yahoogroups.com
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>

#123 From: "Luke Hodgkinson" <hodgkinsonlt@...>
Date: Mon Jan 13, 2003 12:11 pm
Subject: partial errata list
hodgkinsonlt
Send Email Send Email
 
Dear Dr. Norvig,
 
I think your textbook is one of the best textbooks I have ever read. 
 
The most obvious typographical errors I have found so far are 1) page 121 line 12: remove [discretization]; 2) page 26 third line from the bottom: replace form with from; 3) page 37 14th line from the bottom: replace a with an; 4) page 186 line 14: replace contingency problems with contingency problem; 5) page 95 footnote 2: replace is with it; 6) page 130 line 3: remove extra word betwen combines and pairs; 7) p 165 14th line from bottom: remove extra word between to and extend; 8) p 182 line 3: transpose felt and that; 9) p 183 7th line from the bottom: add has between approach and been; 10) p 191 Ex. 6.5 b. 3rd line: add to between nodes and the; 11) page 194 9th line from bottom: add is between uses and in; 12) page 247 last line: add are between there and roughly; 13) p 276 7th line from bottom: add in between that and one; 14) p 284 line 5: remove if and add it after whether; 15) page 364 line 15: remove [modal operator]; 16) page 425 line 17: replace are with and.
 
The most obvious errors of reference that I have found so far are 1) page 368 8th line from the bottom: a reference is made to the supermarket world from the first edition; perhaps the reference should be changed to the Internet shopping world; 2) page 375 line 3: no logical planning agent was introduced in chapter 10; perhaps the reference should be to Chapter 7; 3) page 370 Ex. 10.4: Section 10.3 did not have any axioms relating to soup; perhaps the axioms that are to be used should be clarified; 4) page 413 Ex. 11.4 d.: it does not seem that the qualification problem has been introduced at this point in the book; even the index agrees; 5) p 431 line 9: the qualification problem does not seem to have been discussed in Chapter 10.
 
I will continue to keep you posted about the errors I find during my reading since I've only finished the first 435 pages. I hope that this partial errata list will be helpful when preparing your magnificent book for the second printing.
 
Luke Hodgkinson
 
 
----- Original Message -----
Sent: Monday, January 13, 2003 1:21 AM
Subject: Re: [aima-talk] Question about Errata list

We don't have an errata list yet; you can help start it.

Thanks,
-Peter Norvig

----- Original Message -----
From: <hodgkinsonlt@...>
To: <aima-talk@yahoogroups.com>
Sent: Sunday, January 12, 2003 8:01 AM
Subject: [aima-talk] Question about Errata list


> Dear Drs. Russell and Norvig,
>
> I was wondering if you have a published errata list for AIMA, second
> edition. I have discovered some typographical errors and errors of
> referencing the wrong pages and chapters.  I would like to refer to
> an errata list so that I can avoid mentioning errors that have
> already been reported.
>
> Thank you very much.
>
> Luke Hodgkinson: a student at Hiram College
>
>
> To unsubscribe from this group, send an email to:
> aima-talk-unsubscribe@yahoogroups.com
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>


To unsubscribe from this group, send an email to:
aima-talk-unsubscribe@yahoogroups.com



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

#124 From: "Luke Hodgkinson" <hodgkinsonlt@...>
Date: Mon Jan 13, 2003 12:22 pm
Subject: error in error
hodgkinsonlt
Send Email Send Email
 
typographical error 4) should be page 86
 

#125 From: "Luke Hodgkinson" <hodgkinsonlt@...>
Date: Mon Jan 13, 2003 1:02 pm
Subject: possible error in successor state axiom
hodgkinsonlt
Send Email Send Email
 
Dear Dr. Norvig,
 
There might be an error on p. 403 in equation 11.1.  After some logical manipulation with deMorgan's laws and distributing AND over OR, the first part of the right hand side of the if-and-only-if statement asserts that At(P1, JFK)1 could be true if NOT(Fly(P1, JFK, SFO)0 and NOT(At(P1, JFK)0 are both true.  The problem might be with an extra At(P1, JFK)0 that is not necessary.
 
Luke Hodgkinson

#126 From: "Luke Hodgkinson" <hodgkinsonlt@...>
Date: Mon Jan 13, 2003 1:55 pm
Subject: more errors and correction to error explanation
hodgkinsonlt
Send Email Send Email
 
My last message was wrong. The equation is correct logically it seems. One half of a disjunction would read At(P1, JFK)0 AND NOT (At (P1, JFK)0) which would always be false so the disjunction's truth would depend on the other half which would be At(P1, JFK)0 AND NOT (Fly (P1, SFO, JFK)0 which is correct. However, the equation would have a logically equivalent and more natural reading if the first half of the two-part disjunction on the right-hand side simply read (At(P1, JFK)0 AND NOT Fly(P1, JFK, SFO)0.
 
Some additional errors are 1) page 406 line 16 Leftrightarrow should be replaced by an actual arrow; and 2) page 284 figure 9.5 line 2: add AND symbol between Diff(nt, q) and Diff(nt, sa)
 
Luke Hodgkinson

#127 From: "emissar_y <emissary@...>" <emissary@...>
Date: Mon Jan 13, 2003 5:45 pm
Subject: Re: AIMA 2nd edition
emissar_y
Send Email Send Email
 
I received my 2nd edition from Amazon last Monday.. Order all you want..

E.


--- In aima-talk@yahoogroups.com, Peter Norvig <peter@n...> wrote:
> It was supposed to be in-stock on the 19th, but I heard from the
> publisher there will be a slight delay until tomorrow, Dec 23.  There
> was a bad batch of glue in the first printing of the first edition, but
> that shouldn't happen again.
>
> Happy holidays,
> -Peter
>
> Luis Soares wrote:
>
> >Hi there.
> >
> >
> >I saw in Amazon.com that AIMA's 2nd edition was to be published on
> >December 19, 2002. Is this date correct? Because in amazon the book is
> >still not ready for delivery (in fact, they say it will only be
> >possible to ship it on August 2003).
> >
> >I also read many reviews about this book that had complains about the
> >binding of the 1st edition. Is this problem corrected on the 2nd
edition?
> >
> >
> >Thanks for your your time and merry christmas
> >:)
> >
> >
> >To unsubscribe from this group, send an email to:
> >aima-talk-unsubscribe@yahoogroups.com
> >
> >
> >
> >Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >
> >
> >
> >

#128 From: "brent_goodwin2000 <brent.goodwin@...>" <brent.goodwin@...>
Date: Mon Jan 13, 2003 8:20 pm
Subject: Probabilistic Reasoning
brent_goodwi...
Send Email Send Email
 
Hello!

I have a question about the algorithm presented in fig 14.9 on page
506.  Can anyone describe what is meant by the statement "extend e
with value xi for X"?  Thanks in advance for any clues and/or help!

Brent

#129 From: "Luke Hodgkinson" <hodgkinsonlt@...>
Date: Wed Jan 15, 2003 2:37 pm
Subject: errata list
hodgkinsonlt
Send Email Send Email
 
Dear Dr. Norvig,
 
I completed a partial errata list through page 515, but unfortunately, I may not get the chance to go further. My apologies. I hope that this partial list helps.
 
Luke
 

Errata List for AIMA, 2nd Edition, through page 515

 

page 26 third line from the bottom: replace form with from

page 37 14th line from the bottom: replace a with an

page 86 line 14: replace contingency problems with contingency problem

page 95 footnote 2: replace is with it

page 121 line 12: remove [discretization]

page 130 line 3: remove extra word betwen combines and pairs

page 165 14th line from bottom: remove extra word between to and extend

page 182 line 3: transpose felt and that

page 183 7th line from the bottom: add has between approach and been

page 191 Ex. 6.5 b. 3rd line: add to between nodes and the

page 194 9th line from bottom: add is between uses and in

page 247 last line: add are between there and roughly

page 276 7th line from bottom: add in between that and one

page 284 figure 9.5 line 2: add AND symbol between Diff(nt, q) and Diff(nt, sa)

page 284 line 5: remove if and add it after whether

page 364 line 15: remove [modal operator]

page 368 8th line from the bottom: a reference is made to the supermarket world; perhaps the reference should be changed to the Internet shopping world

page 370 Ex. 10.4: Section 10.3 did not have any axioms relating to soup; perhaps the axioms that are to be used should be clarified

page 375 line 3: no logical planning agent was introduced in chapter 10; perhaps the reference should be to Chapter 7

page 406 line 16 Leftrightarrow should be replaced by an actual arrow

page 413 Ex. 11.4 d.: it does not seem that the qualification problem has been introduced at this point in the book; even the index agrees

page 425 line 17: replace are with and

page 431 line 9: the qualification problem does not seem to have been discussed in Chapter 10

page 436 line 6: add what before state

page 437 line 5: change state!set to state set

page 440 10th line from bottom: add are between problems and intractable

page 445 12th line from bottom: change POP-CON to CONTINUOUS-POP-AGENT

page 451 first line: change satisfie to satisfies

page 455 10th line: replace multiagent with Multiagent

page 462 11th line: insert able between be and conclude

page 462 6th line from bottom: the qualification problem was not mentioned in Chapter 10

page 464 first line of second full paragraph: insert a between Assigning and probability

page 467 10th line from bottom: change first an to as

page 467 2nd line from bottom: remove both commas

page 471 7th line: replace could with have

page 472 5th line of 3rd paragraph: change "described earlier" to "described on page 474"

page 474 line 16: insert "by" between "bets" and "Agent"

page 481 line 13: delete "use"

page 488 line 14: remove superfluous period


#130 From: Peter Norvig <peter@...>
Date: Wed Jan 15, 2003 10:44 pm
Subject: Re: errata list
norvig
Send Email Send Email
 
This is great.  I'll review these and turn it into an errata page shortly.

-Peter

Luke Hodgkinson wrote:

> Dear Dr. Norvig,
>
> I completed a partial errata list through page 515, but unfortunately,
> I may not get the chance to go further. My apologies. I hope that this
> partial list helps.
>
> Luke
>
>
> *Errata List for AIMA, 2nd Edition, through page 515*
>
>
>
> page 26 third line from the bottom: replace form with from
>
> page 37 14th line from the bottom: replace a with an
>
> page 86 line 14: replace contingency problems with contingency problem
>
> page 95 footnote 2: replace is with it
>
> page 121 line 12: remove [discretization]
>
> page 130 line 3: remove extra word betwen combines and pairs
>
> page 165 14th line from bottom: remove extra word between to and extend
>
> page 182 line 3: transpose felt and that
>
> page 183 7th line from the bottom: add has between approach and been
>
> page 191 Ex. 6.5 b. 3rd line: add to between nodes and the
>
> page 194 9th line from bottom: add is between uses and in
>
> page 247 last line: add are between there and roughly
>
> page 276 7th line from bottom: add in between that and one
>
> page 284 figure 9.5 line 2: add AND symbol between Diff(nt, q) and
> Diff(nt, sa)
>
> page 284 line 5: remove if and add it after whether
>
> page 364 line 15: remove [modal operator]
>
> page 368 8th line from the bottom: a reference is made to the
> supermarket world; perhaps the reference should be changed to the
> Internet shopping world
>
> page 370 Ex. 10.4: Section 10.3 did not have any axioms relating to
> soup; perhaps the axioms that are to be used should be clarified
>
> page 375 line 3: no logical planning agent was introduced in chapter
> 10; perhaps the reference should be to Chapter 7
>
> page 406 line 16 Leftrightarrow should be replaced by an actual arrow
>
> page 413 Ex. 11.4 d.: it does not seem that the qualification problem
> has been introduced at this point in the book; even the index agrees
>
> page 425 line 17: replace are with and
>
> page 431 line 9: the qualification problem does not seem to have been
> discussed in Chapter 10
>
> page 436 line 6: add what before state
>
> page 437 line 5: change state!set to state set
>
> page 440 10th line from bottom: add are between problems and intractable
>
> page 445 12th line from bottom: change POP-CON to CONTINUOUS-POP-AGENT
>
> page 451 first line: change satisfie to satisfies
>
> page 455 10th line: replace multiagent with Multiagent
>
> page 462 11th line: insert able between be and conclude
>
> page 462 6th line from bottom: the qualification problem was not
> mentioned in Chapter 10
>
> page 464 first line of second full paragraph: insert a between
> Assigning and probability
>
> page 467 10th line from bottom: change first an to as
>
> page 467 2nd line from bottom: remove both commas
>
> page 471 7th line: replace could with have
>
> page 472 5th line of 3rd paragraph: change "described earlier" to
> "described on page 474"
>
> page 474 line 16: insert "by" between "bets" and "Agent"
>
> page 481 line 13: delete "use"
>
> page 488 line 14: remove superfluous period
>

Messages 101 - 130 of 946   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help