Astronomy Today


Eric Chaisson - 1993
    While the text is descriptive (largely conceptual) it does provide quantitative material, including worked examples in optional boxed sections.

Engineering Mathematics


K.A. Stroud - 2001
    Fully revised to meet the needs of the wide range of students beginning engineering courses, this edition has an extended Foundation section including new chapters on graphs, trigonometry, binomial series and functions and a CD-ROM

Vector Mechanics for Engineers: Statics


Ferdinand P. Beer - 1977
    Following on the success of the first six editions of the series, this work introduces theoretical and pedagogical innovations in statics, dynamics, and mechanics of materials education.

Ecology: Concepts and Applications


Manuel C. Molles Jr. - 1999
    An evolutionary perspective forms the foundation of the entire discussion. The book begins with the natural history of the planet, considers portions of the whole in the middle chapters, and ends with another perspective of the entire planet in the concluding chapter. Its unique organization of focusing only on several key concepts in each chapter sets it apart from the competition. .

E=MC2: Simple Physics: Why Balloons Rise, Apples Fall & Golf BallsGo Awry


Jeff Stewart - 2010
    With amusing examples from film, TV, and history, learn how physics affects everything in your surroundings--without the use of mind-bending math or the need for a particle accelerator. With E=MC2, you'll learn: When forces balance: Simple answers to questions such as, "Why do balloons rise while apples fall?" The Good, the Bad, and the Impossible: Why The Good, the Bad, and the Ugly is full of absurdities. (For someone whose characters often uphold the law, Clint Eastwood certainly defies the laws of physics in this film.) AC/DC: but only AC really rocks: Alternating current (AC) is much more complicated than direct current (DC). The voltage is constantly moving between positive and negative; the current therefore flows one way, and then the other (rocking back and forth). Why do I feel this warm glow?: The theory behind how the first stars were born General Relativity and GPS: The strange result of gravity on time is well proven. Compared to the interminable time you experience while stuck in a traffic jam, time literally runs faster (because gravity is weaker) in the orbiting GPS satellites that help your GPS system get its fix. At the speed of light: A refresher on the theory of relativity and an understanding of why--a hundred years later--Einstein's physics still points the way in cutting-edge research. Yu again: In the martial arts movie Crouching Tiger, Hidden Dragon, the rebellious young heroine, Jen Yu, blocks an attacker with her hand without standing or bracing herself. All the while, she holds a cup of tea in her other hand and doesn't spill a drop. Find out why kinetic energy and scalar quantity make her move impossible. It's physics for the rest of us. So why not come along for the ride? Advance at the speed of light through the fundamental laws of physics as they were discovered, proven wrong, and revolutionized. Make this and all of the Blackboard Books(tm) a permanent fixture on your shelf, and you'll have instant access to a breadth of knowledge. Whether you need homework help or want to win that trivia game, this series is the trusted source for fun facts.

Computer Networks


Andrew S. Tanenbaum - 1981
    In this revision, the author takes a structured approach to explaining how networks function.

Human Anatomy


Michael McKinley - 2005
    This book contains student-friendly Study Tips, Clinical View boxes, and progressive question sets to motivate students to internalize and apply what they've learned.

The C Programming Language


Brian W. Kernighan - 1978
    It is the definitive reference guide, now in a second edition. Although the first edition was written in 1978, it continues to be a worldwide best-seller. This second edition brings the classic original up to date to include the ANSI standard. From the Preface: We have tried to retain the brevity of the first edition. C is not a big language, and it is not well served by a big book. We have improved the exposition of critical features, such as pointers, that are central to C programming. We have refined the original examples, and have added new examples in several chapters. For instance, the treatment of complicated declarations is augmented by programs that convert declarations into words and vice versa. As before, all examples have been tested directly from the text, which is in machine-readable form. As we said in the first preface to the first edition, C "wears well as one's experience with it grows." With a decade more experience, we still feel that way. We hope that this book will help you to learn C and use it well.

Chemistry and Chemical Reactivity (with General ChemistryNOW CD-ROM)


John C. Kotz - 1987
    This revision includes General ChemistryNow, a new CD-ROM and web-based learning system that focuses on goals, connections, and complete integration with the text.

Operating System Concepts Essentials


Abraham Silberschatz - 2010
    This book covers the core concepts of operating systems without any unnecessary jargon or text. The authors put you on your way to mastering the fundamental concepts of operating systems while you also prepare for today's emerging developments.Covers the core concepts of operating systems Bypasses unnecessary and wordy text or jargon Encourages you to take your operating system knowledge to the next level Prepares you for today's emerging developments in the field of operating systems Operating Systems Concepts Essentials is a soup-to-nuts guide for all things involving operating systems!

C++ Primer


Stanley B. Lippman - 1989
    This Fourth Edition not only keeps this tradition alive, it actually improves on it."--Steve Vinoski, Chief Engineer, Product Innovation, IONA Technologies" The Primer really brings this large and complex language down to size."--Justin Shaw, Senior Member of Technical Staff, Electronic Programs Division, The Aerospace Corporation"It not only gets novices up and running early, but gets them to do so using good programming practices."--Nevin ": -)" Liber, Senior Principal Engineer (C++ developer since 1988)This popular tutorial introduction to standard C++ has been completely updated, reorganized, and rewritten to help programmers learn the language faster and use it in a more modern, effective way.Just as C++ has evolved since the last edition, so has the authors' approach to teaching it. They now introduce the C++ standard library from the beginning, giving readers the means to write useful programs without first having to master every language detail. Highlighting today's best practices, they show how to write programs that are safe, can be built quickly, and yet offer outstanding performance. Examples that take advantage of the library, and explain the features of C++, also show how to make the best use of the language. As in its previous editions, the book's authoritative discussion of fundamental C++ concepts and techniques makes it a valuable resource even for more experienced programmers.Program Faster and More Effectively with This Rewritten ClassicRestructured for quicker learning, using the C++ standard libraryUpdated to teach the most current programming styles and program design techniquesFilled with new learning aids that emphasize important points, warn about common pitfalls, suggest good programming practices, and provide general usage tipsComplete with exercises that reinforce skills learnedAuthoritative and comprehensive in its coverage The source code for the book's extended examples is available on the Web at the address below.www.awprofessional.com/cpp_primer

Think Python


Allen B. Downey - 2002
    It covers the basics of computer programming, including variables and values, functions, conditionals and control flow, program development and debugging. Later chapters cover basic algorithms and data structures.

Head First Design Patterns


Eric Freeman - 2004
     At any given moment, somewhere in the world someone struggles with the same software design problems you have. You know you don't want to reinvent the wheel (or worse, a flat tire), so you look to Design Patterns--the lessons learned by those who've faced the same problems. With Design Patterns, you get to take advantage of the best practices and experience of others, so that you can spend your time on...something else. Something more challenging. Something more complex. Something more fun. You want to learn about the patterns that matter--why to use them, when to use them, how to use them (and when NOT to use them). But you don't just want to see how patterns look in a book, you want to know how they look "in the wild". In their native environment. In other words, in real world applications. You also want to learn how patterns are used in the Java API, and how to exploit Java's built-in pattern support in your own code. You want to learn the real OO design principles and why everything your boss told you about inheritance might be wrong (and what to do instead). You want to learn how those principles will help the next time you're up a creek without a design pattern. Most importantly, you want to learn the "secret language" of Design Patterns so that you can hold your own with your co-worker (and impress cocktail party guests) when he casually mentions his stunningly clever use of Command, Facade, Proxy, and Factory in between sips of a martini. You'll easily counter with your deep understanding of why Singleton isn't as simple as it sounds, how the Factory is so often misunderstood, or on the real relationship between Decorator, Facade and Adapter. With Head First Design Patterns, you'll avoid the embarrassment of thinking Decorator is something from the "Trading Spaces" show. Best of all, in a way that won't put you to sleep! We think your time is too important (and too short) to spend it struggling with academic texts. If you've read a Head First book, you know what to expect--a visually rich format designed for the way your brain works. Using the latest research in neurobiology, cognitive science, and learning theory, Head First Design Patterns will load patterns into your brain in a way that sticks. In a way that lets you put them to work immediately. In a way that makes you better at solving software design problems, and better at speaking the language of patterns with others on your team.

Blueprints Obstetrics & Gynecology


Tamara L. Callahan - 1997
    This popular Blueprints book has been refined and updated while keeping the concise, organized style and clinical high-yield content of previous editions. Features include USMLE-style questions and answers with full explanations; Key Points in every section; and a color-enhanced design that increases the usefulness of figures and tables.This edition's completely revised art program includes many additional illustrations. Each chapter in this edition ends with evidence-based references (journals) for students to do additional reading/research.

Abstract Algebra


I.N. Herstein - 1986
    Providing a concise introduction to abstract algebra, this work unfolds some of the fundamental systems with the aim of reaching applicable, significant results.