I hate to throw shade on this, but look at theorem 2.1, proving by induction that x*n - 1 is divisible by x-1. The concluding sentence I believe mistakenly refers to the left hand term, when they intend to refer to the right hand term. "But the left term is divisible by x - 1 by the induction hypothesis, and the right term is just x-1.". I would spend many hours staring at that sentence wondering why I "just" did not…
Introduction to Algorithms: A Creative Approach by Udi Manber [pdf]
31–38 of 38 posts
Re: Introduction to Algorithms: A Creative Approach by Udi Manber [pdf]
#32I took CS 445 Algorithms at Arizona with Udi Manber as the professor in the late 90s. Tough class. The .com boom was picking up at that point and I think he went to Yahoo shortly after.
Re: Introduction to Algorithms: A Creative Approach by Udi Manber [pdf]
#33I hate to throw shade on this, but look at theorem 2.1, proving by induction that x*n - 1 is divisible by x-1. The concluding sentence I believe mistakenly refers to the left hand term, when they intend to refer to the right hand term. "But the left term is divisible by x - 1 by the induction hypothesis, and the right term is just x-1.". I would spend many hours staring at that sentence wondering why I "just" did not…
Re: Introduction to Algorithms: A Creative Approach by Udi Manber [pdf]
#34I hate to throw shade on this, but look at theorem 2.1, proving by induction that x*n - 1 is divisible by x-1. The concluding sentence I believe mistakenly refers to the left hand term, when they intend to refer to the right hand term. "But the left term is divisible by x - 1 by the induction hypothesis, and the right term is just x-1.". I would spend many hours staring at that sentence wondering why I "just" did not…
Re: Introduction to Algorithms: A Creative Approach by Udi Manber [pdf]
#35I took CS 445 Algorithms at Arizona with Udi Manber as the professor in the late 90s. Tough class. The .com boom was picking up at that point and I think he went to Yahoo shortly after.
IIRC he was also at Google.
Re: Introduction to Algorithms: A Creative Approach by Udi Manber [pdf]
#36Students learning Algorithms for the first time should never touch CLRS. It is the worst thing that a beginner can pick up. It is good as a reference text. Beginners should start with this. This book "actually" teaches you how algorithms are designed and how to break down problems into chunks and solve them using induction/recursion. Your mind will just be blown.
What infuriated me about CLRS was that so much of the content was in the exercises - that had no answers you could check your results against. There are solutions guides you can look up now, but that they would publish such a hostile math book in the first place rubbed me the wrong way.
I have this reaction to some Coursera courses (Odersky's Scala course did this to me). I mean it's wonderful if you get the "ah hah" to figure out the exercise, and it's probably the most meaningful learning, but it shouldn't be the ONLY way.
It's like working on some super expensive niche car; if you have the magic tool that fixes your issue it's trivial, if you don't it's almost impossible.
Re: Introduction to Algorithms: A Creative Approach by Udi Manber [pdf]
#37Students learning Algorithms for the first time should never touch CLRS. It is the worst thing that a beginner can pick up. It is good as a reference text. Beginners should start with this. This book "actually" teaches you how algorithms are designed and how to break down problems into chunks and solve them using induction/recursion. Your mind will just be blown.