Amazon.com: C++ for Mathematicians: An Introduction for Students and Professionals (9781584885849): Edward Scheinerman: Books
C++ for Mathematicians and over one million other books are available for Amazon Kindle. Learn more


or
Sign in to turn on 1-Click ordering.
or
Amazon Prime Free Trial required. Sign up when you check out. Learn More
Sell Back Your Copy
For a $4.25 Gift Card
Trade in
More Buying Choices
Have one to sell? Sell yours here
C++ for Mathematicians: An Introduction for Students and Professionals
 
 
Start reading C++ for Mathematicians on your Kindle in under a minute.

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.

C++ for Mathematicians: An Introduction for Students and Professionals [Paperback]

Edward Scheinerman (Author)
3.7 out of 5 stars  See all reviews (3 customer reviews)

List Price: $73.95
Price: $54.51 & this item ships for FREE with Super Saver Shipping. Details
You Save: $19.44 (26%)
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
In Stock.
Ships from and sold by Amazon.com. Gift-wrap available.
Only 2 left in stock--order soon (more on the way).
Want it delivered Friday, February 24? Choose One-Day Shipping at checkout. Details
Textbook Student FREE Two-Day Shipping for students on millions of items. Learn more

Formats

Amazon Price New from Used from
Kindle Edition $16.81  
Paperback $54.51  

Book Description

June 6, 2006 158488584X 978-1584885849 First Edition
For problems that require extensive computation, a C++ program can race through billions of examples faster than most other computing choices. C++ enables mathematicians of virtually any discipline to create programs to meet their needs quickly, and is available on most computer systems at no cost. C++ for Mathematicians: An Introduction for Students and Professionals accentuates C++ concepts that are most valuable for pure and applied mathematical research.

This is the first book available on C++ programming that is written specifically for a mathematical audience; it omits the language’s more obscure features in favor of the aspects of greatest utility for mathematical work. The author explains how to use C++ to formulate conjectures, create images and diagrams, verify proofs, build mathematical structures, and explore myriad examples. Emphasizing the essential role of practice as part of the learning process, the book is ideally designed for undergraduate coursework as well as self-study. Each chapter provides many problems and solutions which complement the text and enable you to learn quickly how to apply them to your own problems. An accompanying CD ROM provides all numbered programs so that readers can easily use or adapt the code as needed.

Presenting clear explanations and examples from the world of mathematics that develop concepts from the ground up, C++ for Mathematicians can be used again and again as a resource for applying C++ to problems that range from the basic to the complex.


Customers Who Bought This Item Also Bought


Product Details

  • Paperback: 520 pages
  • Publisher: CRC Press; First Edition edition (June 6, 2006)
  • Language: English
  • ISBN-10: 158488584X
  • ISBN-13: 978-1584885849
  • Product Dimensions: 9.2 x 6.3 x 1.2 inches
  • Shipping Weight: 1.6 pounds (View shipping rates and policies)
  • Average Customer Review: 3.7 out of 5 stars  See all reviews (3 customer reviews)
  • Amazon Best Sellers Rank: #279,593 in Books (See Top 100 in Books)

More About the Author

Discover books, learn about writers, read author blogs, and more.

 

Customer Reviews

3 Reviews
5 star:    (0)
4 star:
 (2)
3 star:
 (1)
2 star:    (0)
1 star:    (0)
 
 
 
 
 
Average Customer Review
3.7 out of 5 stars (3 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

17 of 17 people found the following review helpful:
3.0 out of 5 stars Surprisingly interesting presentation, but needs better technical editing, and removal of non-ISO Standard usage & terminology., November 21, 2007
This review is from: C++ for Mathematicians: An Introduction for Students and Professionals (Paperback)
This book is well-written with material clearly presented. Its use of interesting mathematical examples, rather than the more typically forced and artificial ones in other texts, makes it an enjoyable book to read. The author's interest in the subject is evident, and infectious. The book is suitable for beginners, as the author presents material in a manner almost as if he's teaching us what he himself has recently learned and still remembers the problems beginners might experience.

There are, however, a number of problems, most minor but some more serious. In the minor category is the editing which could be somewhat improved. As early as page four a sentence contains an extra "is". On page 12 the author presents a formula to determine the range of minimum and maximum integer values and inadvertently and incorrectly uses bytes rather than bits in the formula. Fortunately, most of the technical editing errors are obvious with careful reading, and may even help readers feel they are really understanding the material.

Also in the minor category, and possibly reflective of the author's emphasis on using C++ for mathematical applications rather than on C++ itself, is his references to C++ items by names that differ from those commonly used by most C++ professionals. For example, he refers to the '<< insertion operator' as 'the << operation'. When introducing 'endl' he identifies it as the endl object, rather than, as is common, a 'stream manipulator'. He makes the stated choice not to use the more common C++ term `function' but chooses to refer to these program entities as procedures, so as not to have any confusion between the mathematical and computer uses of this term.

However, many mathematical terms are "overloaded". For example, 'modulus', is used with different meanings in arithmetic, complex numbers, set theory, elliptic functions, etc. Thus, the author's terminology decisions appear unnecessary for the intended audience, particularly, as these decisions make it a bit more difficult for readers to use other C++ references. The use of more common C++ terminology should provide greater value to the intended audience than the choices made by the author.

The author usually uses good coding practices, although there is the occasional slip. As one example, Program 3.5 finds the greatest common divisor of two integers using a 'for' loop. The loop ends when a variable exceeds the first number entered. This code is inefficient if the first number entered is greater than the second. If so, the values should be swapped before the loop, putting the smaller value first so the number of times through the loop is not unnecessarily large. This would improve speed without loss of generality.

Occasionally programming idioms that appear to be carry overs from a language other than C++ are used. They work, but are often not the most appropriate, efficient, or error reducing way to code in C++.

The more serious problems arise from the author statements about C++ constructs without regard for the ISO standard. He states that in the expression a%b, b can even be "zero!" (the explanation point is the author's). However, the standard notes that when the second operand of either the '/' or '%' operators is zero the behavior is undefined. Generally this results in runtime errors. In Exercise 2.3 readers are asked to determine the results of (-1)%3, (-5)%(-3), and 5%(-3). No reference is made to the ISO standard's statement that if both operands are not non-negative than the sign of the result is implementation-defined. There are similar problems with the author's answers regarding division by zero in problem 2.6. C++ beginners, the target audience, will not know which material presented here is inappropriate for standard implementations.

Although the book has 496 pages, and is 9+ inches high, it is relatively smaller than many other introductory C++ textbooks. This is due both to its comparatively lower page count, and its width which is about one inch less than some other popular introductory C++ texts such as Prata's or Deitel's. This has it pros and cons. Because of its smaller size and weight the book is much easier to hold and use. It also means the author has chosen to select those topics he feels most important and leave out many others. Of course a consequence of this is that the book contains less C++ content.

In spite of its deficiencies this is a book that's hard not to like. With a technical scrub by a C++ professional using the ISO standard, and the use of more common C++ terminology this book would be a standout. Its organization, writing, and explanations are exceptionally clear and the book is surprisingly, for a C++ text, entertaining. However, Chapman and Hall's pricing appears inappropriately high considering the book's relative size and paperback binding.

If the deficiencies mentioned above can be corrected, this would be an outstanding C++ text. A book I wouldn't hesitate to highly recommend as an excellent choice not only for mathematicians, but for others interested in quickly developing the skills needed to program quantitative problems in C++.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


4 of 6 people found the following review helpful:
4.0 out of 5 stars Perfect for learning, September 21, 2007
By 
T. Patrick Sullivan (Germantown, TN United States) - See all my reviews
(REAL NAME)   
This review is from: C++ for Mathematicians: An Introduction for Students and Professionals (Paperback)
I bought this book a couple of weeks ago and have worked the exercises in the first four chapters so far. The exercises are perfectly chosen; the math is interesting and the programming is challenging, and there are thoughtful solutions to almost every exercise! It's obviously not appropriate for a future programmer, but for a mathematician who needs passing familiarity with programming it's perfect. Even if you don't want to use C++ in your work, a firm foundation in it gives you the freedom to branch out to Java, C#, or another language later on. I'd recommend it for anyone with a mathematical background who wants a fun introduction to C++.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


4.0 out of 5 stars Exactly as the title states, October 25, 2009
By 
This review is from: C++ for Mathematicians: An Introduction for Students and Professionals (Paperback)
This book is pretty much the book you would want to get if you are a mathematician or math student needing to write a C++ program.
It keeps things simple by sticking more of the error prone and complicated parts of C++ to the end. I guess you could see it as a cookbook approach to learning C++ since as the author states the main goal is "... we are interested in getting data into our programs and results out of them" and the book succeeds in this regard. It sticks to using call-by-reference and the STL container classes to cover alot more than other books that cover building container classes from scratch. All the examples are math oriented so you know it's intended for math types and would come in handy for any student taking math classes wanted to write programs to follow what they are doing in class. What I really liked is that it covers some things that other C++ don't cover at all like using Doxygen to documentation your code or creating your own makefiles. It also covers thing like using GNU Multiple Precision Library for arbitrary precision, the TNT and JAMA packages for linear algebra work, and GNU plotutils package for visualization work with your programs which I have yet to see any other introductory C++ books I've read. It's also platform agnostic so most if not all the examples should work on any computer you use be it Windows, Linux or Mac.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No

Share your thoughts with other customers: Create your own review
 
 
 
Only search this product's reviews



Inside This Book (learn more)
Key Phrases - Statistically Improbable Phrases (SIPs): (learn more)
default modulus, file gcd, using namespace std, gcd procedure, long nels, mod object, private data elements, return ans, plotter object, type ostream, ordered factorizations, void proc, sieve procedure, mod class, statement cout, return mod, inline procedures, epsilon value, maximal simplices, keyword inline, int maino, array primes, default copy constructor, minimum positive value, bool operator
Key Phrases - Capitalized Phrases (CAPs): (learn more)
Visual Studio, Prove Fermat, Computing Environment, Mod Mod, Complexx Complexx, Standard Template Library, Developer Tools, Monte Carlo, Permutation Permutation, Time Time, Chinese Remainder Theorem
New!
Books on Related Topics | Concordance | Text Stats
Browse Sample Pages:
Front Cover | Table of Contents | First Pages | Index | Back Cover | Surprise Me!
Search Inside This Book:



What Other Items Do Customers Buy After Viewing This Item?


Tags Customers Associate with This Product

 (What's this?)
Click on a tag to find related items, discussions, and people.
 
(1)

Your tags: Add your first tag
 

Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Active discussions in related forums
Search Customer Discussions
Search all Amazon discussions
   
Related forums





Look for Similar Items by Category


Look for Similar Items by Subject