I have problem with implementation of uninformed search algorithms in java that was in the aima.zip package. Can anyone send for me a program that use this...
Hi, On page 74 of The Book there is a formula O(b^d+1). The example states that b=10 and d=2, which in my mind results in 10^3 = 1000, but the example gives...
Hi, The demo package in the distribution has examples of most if not all the searches. The unit tests have more examples. It is difficult to respond...
Dear friends [request for answers to specific problems deleted - moderator] And I've started study aima. Please tell me how I should study(should I solve all...
Hi Evyn ! On page 74 3rd line .... the formula is: b+b^2+b^3+....b^d+{b^(d+1) - b} = O(b^(d+1)) so if you put b=10 and d=2 you will get, => 10 + 10^2 + (10^3 -...
dear friends, i am parimal recently joined to this group.i would like to have more query and i am currently doing engg and this could help us to study about...
Uniform distribution simply means that any point is equally likely along the interval 18-26 deg C. So ANY point (say 20.5) is 12.5% likely to happen. All the...
Would this imply an infinitely large table of percept sequences? This seems odd b/c the point of table driven is that it's finite for small domains. ... will...
Considering the recent interest in "Semantic Web", as a part of the SOA course, the students are discussing the "Semantic Web Vs Artificial Intelligence". In...
Does anyone know where I can find the data that was used to generate the training curve in Figure 20.26(a). I did find the restaurant.csv file but it contains...
http://www.cs.virginia.edu/~robins/YouAndYourResearch.html (extremely long post replaced by a link to the article on the net - potsers, please keep in mind...
The BBC has a technology program, Digital Planet which I listen to regularly. The program covered the event in the September 18th, 2006 edition. I can give you...
In section 3.2 (p.67) the author suggested that the enhanced version of the formulation reduced the state space from 3*10^14 to just 2057. How is the number...
I was curious about the figure of 2057 of the no. of states in the complete state formulation (p.67). Now seeing the answer from one of the authors, I ran my...
Can someone explain how numeric values were derived for P(fringe)? I see in the book where it states, "Notice that the expression P(b|known,P[1,3],fringe) is 1...
I've read in the 2nd edition, that a node is conditionally independent of its non-descendants given its parents or given its Markov blanket. The 2nd edition...
... The so called Berkson's paradox states: if 0 < P(A) < 1 and 0 < P(B) < 1, and P(A|B) = P(A), i.e. they are independent, then P(A|B,C) < P(A|C) where C =...
I'd like to begin my comments on "Artificial Intelligence: A Modern Approach, 2nd Edition" by saying that this is a truly, truly excellent book, which I...
... But the content of the book is not free. It would be great if the authors will release at least some parts (e.g. the Summaries and the Bibliographical and...
Hey Ivan and Eliezer, BTW, I think you folks may also want to voice these opinion on the other Yahoo Group. <aima-instructors@yahoogroups.com> -- Take care, ...
That's an interesting idea. Of course the publishers, not the authors, are thee ones with the right to do that. But the authors can encourage the publishers...
hi, I want to find all solutions in state space for a problem with dfs algorithm I write this I think it is true but not efficient. Can anyone say something...