Book picks similar to
Mechanical Engineering Design by Joseph Edward Shigley
engineering
mechanical-engineering
textbooks
textbook
Understanding Thermodynamics
Hendrick C. Van Ness - 1983
Language is informal, examples are vivid and lively, and the perspectivie is fresh. Based on lectures delivered to engineering students, this work will also be valued by scientists, engineers, technicians, businessmen, anyone facing energy challenges of the future.
Calculus
Ron Larson - 1999
It has been widely praised by a generation of users for its solid and effective pedagogy that addresses the needs of a broad range of teaching and learning styles and environments. Each title is just one component in a comprehensive calculus course program that carefully integrates and coordinates print, media, and technology products for successful teaching and learning.
Systems Engineering and Analysis
Benjamin S. Blanchard - 1981
Each
In Search of Schrödinger's Cat: Quantum Physics and Reality
John Gribbin - 1984
It is so important that it provides the fundamental underpinning of all modern sciences. Without it, we'd have no nuclear power or nuclear bombs, no lasers, no TV, no computers, no science of molecular biology, no understanding of DNA, no genetic engineering—at all. John Gribbin tells the complete story of quantum mechanics, a truth far stranger than any fiction. He takes us step-by-step into an ever more bizarre and fascinating place—requiring only that we approach it with an open mind. He introduces the scientists who developed quantum theory. He investigates the atom, radiation, time travel, the birth of the universe, superconductors and life itself. And in a world full of its own delights, mysteries and surprises, he searches for Schrödinger's Cat—a search for quantum reality—as he brings every reader to a clear understanding of the most important area of scientific study today—quantum physics.
Introduction to Robotics: Mechanics and Control
John J. Craig - 1985
This edition features new material on Controls, Computer-Aided Design and Manufacturing, and Off-Line Programming Systems.
Introduction to Linear Algebra
Gilbert Strang - 1993
Topics covered include matrix multiplication, row reduction, matrix inverse, orthogonality and computation. The self-teaching book is loaded with examples and graphics and provides a wide array of probing problems, accompanying solutions, and a glossary. Chapter 1: Introduction to Vectors; Chapter 2: Solving Linear Equations; Chapter 3: Vector Spaces and Subspaces; Chapter 4: Orthogonality; Chapter 5: Determinants; Chapter 6: Eigenvalues and Eigenvectors; Chapter 7: Linear Transformations; Chapter 8: Applications; Chapter 9: Numerical Linear Algebra; Chapter 10: Complex Vectors and Matrices; Solutions to Selected Exercises; Final Exam. Matrix Factorizations. Conceptual Questions for Review. Glossary: A Dictionary for Linear Algebra Index Teaching Codes Linear Algebra in a Nutshell.
The Illustrated A Brief History of Time/The Universe in a Nutshell
Stephen Hawking - 1988
In this new book Hawking takes us to the cutting edge of theoretical physics, where truth is often stranger than fiction, to explain in laymen's terms the principles that control our universe. Like many in the community of theoretical physicists, Professor Hawking is seeking to uncover the grail of science - the elusive Theory of Everything that lies at the heart of the cosmos. In his accessible and often playful style, he guides us on his search to uncover the secrets of the universe - from supergravity to supersymmetry, from quantum theory to M-theory, from holography to duality. He takes us to the wild frontiers of science, where superstring theory and p-branes may hold the final clue to the puzzle. And he lets us behind the scenes of one of his most exciting intellectual adventures as he seeks "to combine Einstein's General Theory of Relativity and Richard Feynman's idea of multiple histories into one complete unified theory that will describe everything that happens in the universe." With characteristic exuberance, Professor Hawking invites us to be fellow travelers on this extraordinary voyage through space-time. Copious four-color illustrations help clarify this journey into a surreal wonderland where particles, sheets, and strings move in eleven dimensions; where black holes evaporate and disappear, taking their secret with them; and where the original cosmic seed from which our own universe sprang was a tiny nut. The Universe in a Nutshell is essential reading for all of us who want to understand the universe in which we live. Like its companion volume, A Brief History of Time, it conveys the excitement felt within the scientific community as the secrets of the cosmos reveal themselves.
Numerical Methods for Engineers
Steven C. Chapra - 1985
It covers such areas as biotechnology and biomedical engineering.
Internal Combustion Engine Fundamentals.
John B. Heywood - 1988
An illustration program supports the concepts and theories discussed.
Classical Mechanics
John R. Taylor - 2003
John Taylor has brought to his new book, Classical Mechanics, all of the clarity and insight that made his introduction to Error Analysis a best-selling text.
Structured Computer Organization
Andrew S. Tanenbaum - 1976
The operation of a typical IBM PC clone is now described in detail at the chip level.
Advanced Engineering Mathematics
Erwin Kreyszig - 1968
The new edition provides invitations - not requirements - to use technology, as well as new conceptual problems, and new projects that focus on writing and working in teams.
Gravitation
Charles W. Misner - 1973
These sections together make an appropriate one-term advanced/graduate level course (mathematical prerequisites: vector analysis and simple partial-differential equations). The book is printed to make it easy for readers to identify these sections.• The remaining Track 2 material provides a wealth of advanced topics instructors can draw from to flesh out a two-term course, with Track 1 sections serving as prerequisites.
The Handy Physics Answer Book
P. Erik Gundersen - 1998
What, really, does E=MC2 mean? More fun than a slide rule, Handy Physics tackles the big issues: Gravity. Magnetism. Matter. Sound. Light. And the smaller topics, like why do cats always land on their feet? Why don't birds or squirrels on power lines get electrocuted? Only Handy Physics combines elementary theory with heartwarming tales of small animals. For everyone who ever wondered how a light bulb works, The Handy Physics Answer Book examines more than 825 basic questions about physics and physicists, ranging from everyday life applications to the latest explorations in subatomic physics. The Handy Physics Answer Book disposes with the mathematical explanations and deep coma often associated with physics and instead takes a more conceptual approach – written in everyday English by yet another teacher. Other great stuff includes a list of the Nobel Prize winners in physics and suggestions for further reading. Ideal for students, science readers, theatergoers, and anyone reckoning with the essential questions about the universe we dwell within, Handy Physics is a friendly guide to the most significant scientific theories and discoveries of our time. And, we promise, no chalkboards.
Fluent Python: Clear, Concise, and Effective Programming
Luciano Ramalho - 2015
With this hands-on guide, you'll learn how to write effective, idiomatic Python code by leveraging its best and possibly most neglected features. Author Luciano Ramalho takes you through Python's core language features and libraries, and shows you how to make your code shorter, faster, and more readable at the same time.Many experienced programmers try to bend Python to fit patterns they learned from other languages, and never discover Python features outside of their experience. With this book, those Python programmers will thoroughly learn how to become proficient in Python 3.This book covers:Python data model: understand how special methods are the key to the consistent behavior of objectsData structures: take full advantage of built-in types, and understand the text vs bytes duality in the Unicode ageFunctions as objects: view Python functions as first-class objects, and understand how this affects popular design patternsObject-oriented idioms: build classes by learning about references, mutability, interfaces, operator overloading, and multiple inheritanceControl flow: leverage context managers, generators, coroutines, and concurrency with the concurrent.futures and asyncio packagesMetaprogramming: understand how properties, attribute descriptors, class decorators, and metaclasses work"