Numerical Methods for Engineers and Scientists
Book 1
Book 2
Book 3
Book 1
Book 2
Book 3
Book 1
Book 2
Book 3
Book 1
Book 2
Book 3
Home > Science, Technology & Agriculture > Mechanical engineering and materials > Numerical Methods for Engineers and Scientists: An Introduction with Applications Using MATLAB
Numerical Methods for Engineers and Scientists: An Introduction with Applications Using MATLAB

Numerical Methods for Engineers and Scientists: An Introduction with Applications Using MATLAB


     0     
5
4
3
2
1



International Edition


X
About the Book

Numerical Methods for Engineers and Scientists, 3rd Edition provides engineers with a more concise treatment of the essential topics of numerical methods while emphasizing MATLAB use. The third edition includes a new chapter, with all new content, on Fourier Transform and a new chapter on Eigenvalues (compiled from existing Second Edition content). The focus is placed on the use of anonymous functions instead of inline functions and the uses of subfunctions and nested functions. This updated edition includes 50% new or updated Homework Problems, updated examples, helping engineers test their understanding and reinforce key concepts.

Table of Contents:
Preface iii Chapter 1 Introduction 1 1.1 Background 1 1.2 Representation of Numbers on a Computer 4 1.3 Errors in Numerical Solutions 10 1.4 Computers and Programming 15 1.5 Problems 18 Chapter 2 Mathematical Background 23 2.1 Background 23 2.2 Concepts from Pre-Calculus and Calculus 24 2.3 Vectors 28 2.4 Matrices and Linear Algebra 32 2.5 Ordinary Differential Equations (ODE) 41 2.6 Functions of Two or More Independent Variables 44 2.7 Taylor Series Expansion of Functions 47 2.8 Inner Product and Orthogonality 50 2.9 Problems 51 Chapter 3 Solving Nonlinear Equations 57 3.1 Background 57 3.2 Estimation of Errors in Numerical Solutions 59 3.3 Bisection Method 61 3.4 Regula Falsi Method 64 3.5 Newton’s Method 66 3.6 Secant Method 71 3.7 Fixed-Point Iteration Method 74 3.8 Use of MATLAB Built-In Functions for Solving Nonlinear Equations 77 3.9 Equations with Multiple Solutions 79 3.10 Systems of Nonlinear Equations 81 3.11 Problems 88 Chapter 4 Solving a System of Linear Equations 99 4.1 Background 99 4.2 Gauss Elimination Method 102 4.3 Gauss Elimination with Pivoting 112 4.4 Gauss–Jordan Elimination Method 115 4.5 LU Decomposition Method 118 4.6 Inverse of a Matrix 128 4.7 Iterative Methods 132 4.8 Use of MATLAB Built-In Functions for Solving a System of Linear Equations 136 4.9 Tridiagonal Systems of Equations 141 4.10 Error, Residual, Norms, and Condition Number 146 4.11 Ill-Conditioned Systems 151 4.12 Problems 155 Chapter 5 Eigenvalues and Eigenvectors 165 5.1 Background 165 5.2 The Characteristic Equation 167 5.3 The Basic Power Method 167 5.4 The Inverse Power Method 172 5.5 The Shifted Power Method 173 5.6 The QR Factorization and Iteration Method 174 5.7 Use of MATLAB Built-In Functions for Determining Eigenvalues and Eigenvectors 184 5.8 Problems 186 Chapter 6 Curve Fitting and Interpolation 193 6.1 Background 193 6.2 Curve Fitting with a Linear Equation 195 6.3 Curve Fitting with Nonlinear Equation by Writing the Equation in a Linear Form 201 6.4 Curve Fitting with Quadratic and Higher-Order Polynomials 205 6.5 Interpolation Using a Single Polynomial 210 6.6 Piecewise (Spline) Interpolation 223 6.7 Use of MATLAB Built-In Functions for Curve Fitting and Interpolation 236 6.8 Curve Fitting with a Linear Combination of Nonlinear Functions 238 6.9 Problems 241 Chapter 7 Fourier Methods 251 7.1 Background 251 7.2 Approximating a Square Wave by a Series of sine functions 254 7.3 General (Infinite) Fourier Series 257 7.4 Complex Form of the Fourier Series 262 7.5 The Discrete Fourier Series and Discrete Fourier transform 263 7.6 Complex Discrete Fourier Transform 269 7.7 Power (Energy) Spectrum 272 7.8 Aliasing and Nyquist Frequency 273 7.9 Alternative Forms of the Discrete Fourier Transform 278 7.10 Use of MATLAB Built-In Functions for Calculating Discrete Fourier Transform 279 7.11 Leakage and Windowing 284 7.12 Bandwidth and Filters 286 7.13 The Fast Fourier Transform (FFT) 288 7.14 Problems 298 Chapter 8 Numerical Differentiation 303 8.1 Background 303 8.2 Finite Difference Approximation of the Derivative 305 8.3 Finite Difference Formulas Using Taylor Series Expansion 310 8.4 Summary of Finite Difference Formulas for Numerical Differentiation 317 8.5 Differentiation Formulas Using Lagrange Polynomials 319 8.6 Differentiation Using Curve Fitting 320 8.7 Use of MATLAB Built-In Functions for Numerical Differentiation 320 8.8 Richardson’s Extrapolation 322 8.9 Error in Numerical Differentiation 325 8.10 Numerical Partial Differentiation 327 8.11 Problems 330 Chapter 9 Numerical Integration 341 9.1 Background 341 9.1.1 Overview of Approaches in Numerical Integration 342 9.2 Rectangle and Midpoint Methods 344 9.3 Trapezoidal Method 346 9.4 Simpson’s Methods 350 9.5 Gauss Quadrature 355 9.6 Evaluation of Multiple Integrals 360 9.7 Use of MATLAB Built-In Functions for Integration 362 9.8 Estimation of Error in Numerical Integration 364 9.9 Richardson’s Extrapolation 366 9.10 Romberg Integration 369 9.11 Improper Integrals 372 9.12 Problems 374 Chapter 10 Ordinary Differential Equations: Initial-Value Problems 385 10.1 Background 385 10.2 Euler’s Methods 390 10.3 Modified Euler’s Method 401 10.4 Midpoint Method 404 10.5 Runge–Kutta Methods 405 10.6 Multistep Methods 417 10.6.1 Adams–Bashforth Method 418 10.6.2 Adams–Moulton Method 419 10.7 Predictor–Corrector Methods 420 10.8 System of First-Order Ordinary Differential Equations 422 10.9 Solving a Higher-Order Initial Value Problem 432 10.10 Use of MATLAB Built-In Functions for Solving Initial-Value Problems 437 10.11 Local Truncation Error in Second-Order Range–Kutta Method 447 10.12 Step Size for Desired Accuracy 448 10.13 Stability 452 10.14 Stiff Ordinary Differential Equations 454 10.15 Problems 457 Chapter 11 Ordinary Differential Equations: Boundary-Value Problems 471 11.1 Background 471 11.2 The Shooting Method 474 11.3 Finite Difference Method 482 11.4 Use of MATLAB Built-In Functions for Solving Boundary Value Problems 492 11.5 Error and Stability in Numerical Solution of Boundary Value Problems 497 11.6 Problems 499 Appendix A Introductory MATLAB 509 A.1 Background 509 A.2 Starting with MATLAB 509 A.3 Arrays 514 A.4 Mathematical Operations with Arrays 519 A.5 Script Files 524 A.6 Plotting 526 A.7 User-Defined Functions and Function Files 528 A.8 Anonymous Functions 530 A.9 Function functions 532 A.10 Subfunctions 535 A.11 Programming in MATLAB 537 A.11.1 Relational and Logical Operators 537 A.11.2 Conditional Statements, if-else Structures 538 A.11.3 Loops 541 A.12 Problems 542 Appendix B MATLAB Programs 547 Appendix C Derivation of the Real Discrete Fourier Transform 551 C.1 Orthogonality of Sines and Cosines for Discrete Points 551 C.2 Determination of the Real DFT 553 Index 555

About the Author :
Amos Gilat, Ph.D., is Professor of Mechanical Engineering at The Ohio State University. Dr. Gillat’s main research interests are in plasticity, specifically, in developing experimental techniques for testing materials over a wide range of strain rates and temperatures and in investigating constitutive relations for viscoplasticity. Dr. Gilat's research has been supported by the National Science Foundation, NASA, Federal Aviation Administration, Department of Defense, and various industries. Vish Subramaniam, Ph.D., is a Professor of Mechanical Engineering & Chemical Physics at The Ohio State University. Dr. Subramaniam’s main research interests are in cancer detection and imaging, plasma and laser physics and processes, particularly those that involve non-equilibirum phenomena. Dr. Subramaniam's research is both experimental and computational, and has been supported by The Department of Defense, National Science Foundation, and numerous industries.


Best Sellers


Product Details
  • ISBN-13: 9781118554937
  • Publisher: John Wiley & Sons Inc
  • Publisher Imprint: John Wiley & Sons Inc
  • Height: 257 mm
  • No of Pages: 576
  • Returnable: N
  • Sub Title: An Introduction with Applications Using MATLAB
  • Width: 208 mm
  • ISBN-10: 1118554930
  • Publisher Date: 26 Dec 2014
  • Binding: Hardback
  • Language: English
  • Returnable: N
  • Spine Width: 28 mm
  • Weight: 1225 gr


Similar Products

Add Photo
Add Photo

Customer Reviews

REVIEWS      0     
Click Here To Be The First to Review this Product
Numerical Methods for Engineers and Scientists: An Introduction with Applications Using MATLAB
John Wiley & Sons Inc -
Numerical Methods for Engineers and Scientists: An Introduction with Applications Using MATLAB
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Numerical Methods for Engineers and Scientists: An Introduction with Applications Using MATLAB

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    Fresh on the Shelf


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!