Book picks similar to
Topology by James R. Munkres
mathematics
math
textbooks
topology
Category Theory for Programmers
Bartosz Milewski - 2014
Collected from the series of blog posts starting at: https://bartoszmilewski.com/2014/10/2...Hardcover available at: http://www.blurb.com/b/9008339-catego...
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
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"
Organic Chemistry
Francis A. Carey - 2007
This best-selling text gives students a solid understanding of organic chemistry by stressing how fundamental reaction mechanisms function and reactions occur. With the addition of handwritten solutions, new cutting-edge molecular illustrations, updated spectroscopy coverage, seamless integration of molecular modeling exercises, and state-of-the-art multimedia tools, the 7th edition of Organic Chemistry clearly offers the most up-to-date approach to the study of organic chemistry.
Mathematical Statistics with Applications (Mathematical Statistics (W/ Applications))
Dennis D. Wackerly - 1995
Premiere authors Dennis Wackerly, William Mendenhall, and Richard L. Scheaffer present a solid foundation in statistical theory while conveying the relevance and importance of the theory in solving practical problems in the real world. The authors' use of practical applications and excellent exercises helps readers discover the nature of statistics and understand its essential role in scientific research.
A Most Incomprehensible Thing: Notes Towards a Very Gentle Introduction to the Mathematics of Relativity
Peter Collier - 2012
This user-friendly self-study guide is aimed at the general reader who is motivated to tackle that not insignificant challenge. The book is written using straightforward and accessible language, with clear derivations and explanations as well as numerous fully solved problems. For those with minimal mathematical background, the first chapter provides a crash course in foundation mathematics. The reader is then taken gently by the hand and guided through a wide range of fundamental topics, including Newtonian mechanics; the Lorentz transformations; tensor calculus; the Einstein field equations; the Schwarzschild solution (which gives a good approximation of the spacetime of our Solar System); simple black holes and relativistic cosmology. Following the historic 2015 LIGO (Laser Interferometer Gravitational-Wave Observatory) detection, there is now an additional chapter on gravitational waves, ripples in the fabric of spacetime that potentially provide a revolutionary new way to study the universe. Special relativity helps explain a huge range of non-gravitational physical phenomena and has some strangely counter-intuitive consequences. These include time dilation, length contraction, the relativity of simultaneity, mass-energy equivalence and an absolute speed limit. General relativity, the leading theory of gravity, is at the heart of our understanding of cosmology and black holes.Understand even the basics of Einstein's amazing theory and the world will never seem the same again. ContentsPrefaceIntroduction1 Foundation mathematics2 Newtonian mechanics3 Special relativity4 Introducing the manifold5 Scalars, vectors, one-forms and tensors6 More on curvature7 General relativity8 The Newtonian limit9 The Schwarzschild metric10 Schwarzschild black holes11 Cosmology12 Gravitational wavesAppendix: The Riemann curvature tensorBibliographyAcknowledgementsJanuary 2019. This third edition has been revised to make the material even more accessible to the enthusiastic general reader who seeks to understand the mathematics of relativity.
OpenIntro Statistics
David M. Diez - 2012
Our inaugural effort is OpenIntro Statistics. Probability is optional, inference is key, and we feature real data whenever possible. Files for the entire book are freely available at openintro.org, and anybody can purchase a paperback copy from amazon.com for under $10.The future for OpenIntro depends on the involvement and enthusiasm of our community. Visit our website, openintro.org. We provide free course management tools, including an online question bank, utilities for creating course quizzes, and many other helpful resources.CERTAIN CONTENT THAT APPEARS ON THIS SITE COMES FROM AMAZON SERVICES LLC. THIS CONTENT IS PROVIDED ‘AS IS’ AND IS SUBJECT TO CHANGE OR REMOVAL AT ANY TIME.Can’t find it here? Search Amazon.com Search: All Products Apparel & AccessoriesBabyBeautyBooksCamera & PhotoCell Phones & ServiceClassical MusicComputersComputer & Video GamesDVDElectronicsGourmet FoodHome & GardenMiscellaneousHealth & Personal CareJewelry & WatchesKitchen & HousewaresMagazine SubscriptionsMusicMusical InstrumentsSoftwareSports & OutdoorsTools & HardwareToys & GamesVHS Keywords:
Introduction to Flight
John D. Anderson Jr. - 1978
Introduction to Flight blends history and biography with discussion of engineering concepts, and shows the development of flight through this perspective. Anderson covers new developments in flight, including unmanned aerial vehicles, uninhabited combat aerial vehicles, and applications of CFD in aircraft design. Many new and revised problems have been added in this edition. Chapter learning features help readers follow the text discussion while highlighting key engineering and industry applications.
Beginning Theory: An Introduction to Literary and Cultural Theory
Peter Barry - 1995
This new and expanded third edition continues to offer students and readers the best one-volume introduction to the field.The bewildering variety of approaches, theorists and technical language is lucidly and expertly unraveled. Unlike many books which assume certain positions about the critics and the theories they represent, Peter Barry allows readers to develop their own ideas once first principles and concepts have been grasped.
Doing Bayesian Data Analysis: A Tutorial Introduction with R and BUGS
John K. Kruschke - 2010
Included are step-by-step instructions on how to carry out Bayesian data analyses.Download Link : readbux.com/download?i=0124058884 0124058884 Doing Bayesian Data Analysis: A Tutorial with R, JAGS, and Stan PDF by John Kruschke
Effective Java
Joshua Bloch - 2001
The principal enhancement in Java 8 was the addition of functional programming constructs to Java's object-oriented roots. Java 7, 8, and 9 also introduced language features, such as the try-with-resources statement, the diamond operator for generic types, default and static methods in interfaces, the @SafeVarargs annotation, and modules. New library features include pervasive use of functional interfaces and streams, the java.time package for manipulating dates and times, and numerous minor enhancements such as convenience factory methods for collections. In this new edition of Effective Java, Bloch updates the work to take advantage of these new language and library features, and provides specific best practices for their use. Java's increased support for multiple paradigms increases the need for best-practices advice, and this book delivers. As in previous editions, each chapter consists of several "items," each presented in the form of a short, standalone essay that provides specific advice, insight into Java platform subtleties, and updated code examples. The comprehensive descriptions and explanations for each item illuminate what to do, what not to do, and why. Coverage includes:Updated techniques and best practices on classic topics, including objects, classes, methods, libraries, and generics How to avoid the traps and pitfalls of commonly misunderstood subtleties of the platform Focus on the language and its most fundamental libraries, such as java.lang and java.util
Elementary Statistics: A Step by Step Approach
Allan G. Bluman - 1992
The book is non-theoretical, explaining concepts intuitively and teaching problem solving through worked examples and step-by-step instructions. This edition places more emphasis on conceptual understanding and understanding results. This edition also features increased emphasis on Excel, MINITAB, and the TI-83 Plus and TI 84-Plus graphing calculators, computing technologies commonly used in such courses.
A Course in Game Theory
Martin J. Osborne - 1994
The authors provide precise definitions and full proofs of results, sacrificing generalities and limiting the scope of the material in order to do so. The text is organized in four parts: strategic games, extensive games with perfect information, extensive games with imperfect information, and coalitional games. It includes over 100 exercises. Solution ManualTable of Contents, Errata, and more...
The Structure of Scientific Revolutions
Thomas S. Kuhn - 1962
The Structure of Scientific Revolutions is that kind of book. When it was first published in 1962, it was a landmark event in the history and philosophy of science. Fifty years later, it still has many lessons to teach. With The Structure of Scientific Revolutions, Kuhn challenged long-standing linear notions of scientific progress, arguing that transformative ideas don’t arise from the day-to-day, gradual process of experimentation and data accumulation but that the revolutions in science, those breakthrough moments that disrupt accepted thinking and offer unanticipated ideas, occur outside of “normal science,” as he called it. Though Kuhn was writing when physics ruled the sciences, his ideas on how scientific revolutions bring order to the anomalies that amass over time in research experiments are still instructive in our biotech age. This new edition of Kuhn’s essential work in the history of science includes an insightful introduction by Ian Hacking, which clarifies terms popularized by Kuhn, including paradigm and incommensurability, and applies Kuhn’s ideas to the science of today. Usefully keyed to the separate sections of the book, Hacking’s introduction provides important background information as well as a contemporary context. Newly designed, with an expanded index, this edition will be eagerly welcomed by the next generation of readers seeking to understand the history of our perspectives on science.
Understanding Digital Signal Processing
Richard G. Lyons - 1996
This second edition is appropriate as a supplementary (companion) text for any college-level course covering digital signal processing.