SIMPSON’S RULES Applied Numerical Methods with MATLAB fo
19.4.2 The Composite Simpson’s 13 Rule
Just as with the trapezoidal rule, Simpson’s rule can be improved by dividing the integra- tion interval into a number of segments of equal width Fig. 19.12. The total integral can be represented as I = x 2 x f x d x + x 4 x 2 f x d x + · · · + x n x n −2 f x d x 19.25 19.4 SIMPSON’S RULES 477 f x x a b 1 4 1 1 4 1 1 4 1 2 1 4 4 2 1 4 1 4 2 4 2 1 4 1 4 1 FIGURE 19.12 Composite Simpson’s 1 3 rule. The relative weights are depicted above the function values. Note that the method can be employed only if the number of segments is even. Substituting Simpson’s 13 rule for each integral yields I = 2h f x + 4 f x 1 + f x 2 6 + 2h f x 2 + 4 f x 3 + f x 4 6 + · · · + 2h f x n −2 + 4 f x n −1 + f x n 6 or, grouping terms and using Eq. 19.15: I = b − a f x + 4 n −1 i =1,3,5 f x i + 2 n −2 j =2,4,6 f x j + f x n 3n 19.26 Notice that, as illustrated in Fig. 19.12, an even number of segments must be utilized to implement the method. In addition, the coefficients “4” and “2” in Eq. 19.26 might seem peculiar at first glance. However, they follow naturally from Simpson’s 13 rule. As illustrated in Fig. 19.12, the odd points represent the middle term for each application and hence carry the weight of four from Eq. 19.23. The even points are common to adjacent applications and hence are counted twice. An error estimate for the composite Simpson’s rule is obtained in the same fashion as for the trapezoidal rule by summing the individual errors for the segments and averaging the derivative to yield E a = − b − a 5 180n 4 ¯f 4 19.27 where f 4 is the average fourth derivative for the interval. EXAMPLE 19.4 Composite Simpson’s 13 Rule Problem Statement. Use Eq. 19.26 with n = 4 to estimate the integral of f x = 0.2 + 25x − 200x 2 + 675x 3 − 900x 4 + 400x 5 from a = 0 to b = 0.8. Employ Eq. 19.27 to estimate the error. Recall that the exact integral is 1.640533. Solution. n = 4h = 0.2: f = 0.2 f 0.2 = 1.288 f 0.4 = 2.456 f 0.6 = 3.464 f 0.8 = 0.232 From Eq. 19.26: I = 0.8 0.2 + 41.288 + 3.464 + 22.456 + 0.232 12 = 1.623467 E t = 1.640533 − 1.623467 = 0.017067 ε t = 1.04 The estimated error Eq. 19.27 is E a = − 0.8 5 1804 4 −2400 = 0.017067 which is exact as was also the case for Example 19.3. As in Example 19.4, the composite version of Simpson’s 13 rule is considered supe- rior to the trapezoidal rule for most applications. However, as mentioned previously, it is limited to cases where the values are equispaced. Further, it is limited to situations where there are an even number of segments and an odd number of points. Consequently, as dis- cussed in Section 19.4.3, an odd-segment–even-point formula known as Simpson’s 38 rule can be used in conjunction with the 13 rule to permit evaluation of both even and odd numbers of equispaced segments.19.4.3 Simpson’s 38 Rule
In a similar manner to the derivation of the trapezoidal and Simpson’s 13 rule, a third- order Lagrange polynomial can be fit to four points and integrated to yield I = 3h 8 [ f x + 3 f x 1 + 3 f x 2 + f x 3 ] where h = b − a3. This equation is known as Simpsons 38 rule because h is multiplied by 38. It is the third Newton-Cotes closed integration formula. The 38 rule can also be expressed in the form of Eq. 19.13: I = b − a f x + 3 f x 1 + 3 f x 2 + f x 3 8 19.28 Thus, the two interior points are given weights of three-eighths, whereas the end points are weighted with one-eighth. Simpson’s 38 rule has an error of E t = − 3 80 h 5 f 4 ξ or, because h = b − a3: E t = − b − a 5 6480 f 4 ξ 19.29 Because the denominator of Eq. 19.29 is larger than for Eq. 19.24, the 38 rule is some- what more accurate than the 13 rule. Simpson’s 13 rule is usually the method of preference because it attains third-order accuracy with three points rather than the four points required for the 38 version. How- ever, the 38 rule has utility when the number of segments is odd. For instance, in Exam- ple 19.4 we used Simpson’s rule to integrate the function for four segments. Suppose that you desired an estimate for five segments. One option would be to use a composite version of the trapezoidal rule as was done in Example 19.2. This may not be advisable, however, because of the large truncation error associated with this method. An alternative would be to apply Simpson’s 13 rule to the first two segments and Simpson’s 38 rule to the last 19.4 SIMPSON’S RULES 479 three Fig. 19.13. In this way, we could obtain an estimate with third-order accuracy across the entire interval. EXAMPLE 19.5 Simpson’s 38 Rule Problem Statement. a Use Simpson’s 38 rule to integrate f x = 0.2 + 25x − 200x 2 + 675x 3 − 900x 4 + 400x 5 from a = 0 to b = 0.8. b Use it in conjunction with Simpson’s 13 rule to integrate the same function for five segments. Solution. a A single application of Simpson’s 38 rule requires four equally spaced points: f = 0.2 f 0.2667 = 1.432724 f 0.5333 = 3.487177 f 0.8 = 0.232 Using Eq. 19.28: I = 0.8 0.2 + 31.432724 + 3.487177 + 0.232 8 = 1.51970 f x x 0.8 0.6 0.4 0.2 38 rule 13 rule 3 2 1 FIGURE 19.13 Illustration of how Simpson’s 1 3 and 3 8 rules can be applied in tandem to handle multiple applications with odd numbers of intervals. b The data needed for a five-segment application h = 0.16 are f = 0.2 f 0.16 = 1.296919 f 0.32 = 1.743393 f 0.48 = 3.186015 f 0.64 = 3.181929 f 0.80 = 0.232 The integral for the first two segments is obtained using Simpson’s 13 rule: I = 0.32 0.2 + 41.296919 + 1.743393 6 = 0.3803237 For the last three segments, the 38 rule can be used to obtain I = 0.48 1.743393 + 33.186015 + 3.181929 + 0.232 8 = 1.264754 The total integral is computed by summing the two results: I = 0.3803237 + 1.264754 = 1.64507719.5 HIGHER-ORDER NEWTON-COTES FORMULAS
As noted previously, the trapezoidal rule and both of Simpson’s rules are members of a family of integrating equations known as the Newton-Cotes closed integration formulas. Some of the formulas are summarized in Table 19.2 along with their truncation-error estimates. Notice that, as was the case with Simpson’s 13 and 38 rules, the five- and six-point formulas have the same order error. This general characteristic holds for the higher-point formulas and leads to the result that the even-segment–odd-point formulas e.g., 13 rule and Boole’s rule are usually the methods of preference. 19.5 HIGHER-ORDER NEWTON-COTES FORMULAS 481 TABLE 19.2 Newton-Cotes closed integration formulas. The formulas are presented in the format of Eq. 19 . 13 so that the weighting of the data points to estimate the average height is apparent. The step size is given by h = b − an. Segments n Points Name Formula Truncation Error 1 2 Trapezoidal rule b − a f x + f x 1 2 −112h 3 f ′′ ξ 2 3 Simpson’s 13 rule b − a f x + 4 f x 1 + f x 2 6 − 190h 5 f 4 ξ 3 4 Simpson’s 38 rule b − a f x + 3 f x 1 + 3 f x 2 + f x 3 8 − 380h 5 f 4 ξ 4 5 Boole’s rule b − a 7 f x + 32 f x 1 + 12 f x 2 + 32 f x 3 + 7 f x 4 90 − 8945h 7 f 6 ξ 5 6 b − a 19 f x + 75 f x 1 + 50 f x 2 + 50 f x 3 + 75 f x 4 + 19 f x 5 288 − 27512,096h 7 f 6 ξ However, it must also be stressed that, in engineering and science practice, the higher- order i.e., greater than four-point formulas are not commonly used. Simpson’s rules are sufficient for most applications. Accuracy can be improved by using the composite version. Furthermore, when the function is known and high accuracy is required, methods such as Romberg integration or Gauss quadrature, described in Chap. 20, offer viable and attrac- tive alternatives.19.6 INTEGRATION WITH UNEQUAL SEGMENTS
To this point, all formulas for numerical integration have been based on equispaced data points. In practice, there are many situations where this assumption does not hold and we must deal with unequal-sized segments. For example, experimentally derived data are often of this type. For these cases, one method is to apply the trapezoidal rule to each seg- ment and sum the results: I = h 1 f x + f x 1 2 + h 2 f x 1 + f x 2 2 + · · · + h n f x n −1 + f x n 2 19.30 where h i = the width of segment i. Note that this was the same approach used for the com- posite trapezoidal rule. The only difference between Eqs. 19.16 and 19.30 is that the h’s in the former are constant. EXAMPLE 19.6 Trapezoidal Rule with Unequal Segments Problem Statement. The information in Table 19.3 was generated using the same poly- nomial employed in Example 19.1. Use Eq. 19.30 to determine the integral for these data. Recall that the correct answer is 1.640533. TABLE 19.3 Data for f x = . 2 + 25 x − 200 x 2 + 675 x 3 − 900 x 4 + 400 x 5 , with unequally spaced values of x. x f x x f x 0.00 0.200000 0.44 2.842985 0.12 1.309729 0.54 3.507297 0.22 1.305241 0.64 3.181929 0.32 1.743393 0.70 2.363000 0.36 2.074903 0.80 0.232000 0.40 2.456000 Solution. Applying Eq. 19.30 yields I = 0.12 0.2 + 1.309729 2 + 0.10 1.309729 + 1.305241 2 + · · · + 0.10 2.363 + 0.232 2 = 1.594801 which represents an absolute percent relative error of ε t = 2.8.Parts
» Applied Numerical Methods with MATLAB fo
» Motivation 1 1.2 Part Organization 2 Overview 123 2.2 Part Organization 124
» Overview 205 3.2 Part Organization 207 Overview 321 4.2 Part Organization 323
» Overview 459 5.2 Part Organization 460 Applied Numerical Methods with MATLAB fo
» New Chapters. Overview 547 6.2 Part Organization 551
» New Content. Overview 547 6.2 Part Organization 551
» New Homework Problems. Overview 547 6.2 Part Organization 551
» Numerical methods greatly expand the
» Numerical methods allow you to use
» PART ORGANIZATION Applied Numerical Methods with MATLAB fo
» CONSERVATION LAWS IN ENGINEERING AND SCIENCE
» NUMERICAL METHODS COVERED IN THIS BOOK
» CASE STUDY IT’S A REAL DRAG CASE STUDY continued
» CASE STUDY continued Applied Numerical Methods with MATLAB fo
» Use calculus to verify that Eq. 1.9 is a solution of
» Use calculus to solve Eq. 1 for the case where the ini-
» The following information is available for a bank account:
» Rather than the nonlinear relationship of Eq. 1.7, you
» For the free-falling bungee jumper with linear drag
» For the second-order drag model Eq. 1.8, compute the
» The amount of a uniformly distributed radioactive con-
» A storage tank Fig. P contains a liquid at depth y
» For the same storage tank described in Prob. 1.9, sup-
» Apply the conservation of volume see Prob. 1.9 to sim-
» THE MATLAB ENVIRONMENT ASSIGNMENT
» MATHEMATICAL OPERATIONS Applied Numerical Methods with MATLAB fo
» GRAPHICS Applied Numerical Methods with MATLAB fo
» OTHER RESOURCES Applied Numerical Methods with MATLAB fo
» CASE STUDY EXPLORATORY DATA ANALYSIS CASE STUDY continued
» Manning’s equation can be used to compute the veloc-
» It is general practice in engineering and science that
» You contact the jumpers used to generate the data in
» Figure Pa shows a uniform beam subject to a lin-
» M-FILES Applied Numerical Methods with MATLAB fo
» INPUT-OUTPUT Applied Numerical Methods with MATLAB fo
» STRUCTURED PROGRAMMING Applied Numerical Methods with MATLAB fo
» NESTING AND INDENTATION Applied Numerical Methods with MATLAB fo
» PASSING FUNCTIONS TO M-FILES
» CASE STUDY BUNGEE JUMPER VELOCITY CASE STUDY continued
» Economic formulas are available to compute annual
» Two distances are required to specify the location of a
» Develop an M-file to determine polar coordinates as
» Develop an M-file function that is passed a numeric
» Manning’s equation can be used to compute the velocity
» The volume V of liquid in a hollow horizontal cylinder of
» Develop a vectorized version of the following code:
» Based on Example 3.6, develop a script to produce an
» ERRORS Applied Numerical Methods with MATLAB fo
» Digital computers have magnitude and precision limits on their ability to represent
» Arithmetic Manipulations of Computer Numbers
» TRUNCATION ERRORS Applied Numerical Methods with MATLAB fo
» TOTAL NUMERICAL ERROR Applied Numerical Methods with MATLAB fo
» BLUNDERS, MODEL ERRORS, AND DATA UNCERTAINTY
» a Applied Numerical Methods with MATLAB fo
» OVERVIEW Applied Numerical Methods with MATLAB fo
» ROOTS IN ENGINEERING AND SCIENCE
» GRAPHICAL METHODS Applied Numerical Methods with MATLAB fo
» BRACKETING METHODS AND INITIAL GUESSES
» BISECTION Applied Numerical Methods with MATLAB fo
» FALSE POSITION Applied Numerical Methods with MATLAB fo
» CASE STUDY GREENHOUSE GASES AND RAINWATER CASE STUDY continued
» Locate the first nontrivial root of sinx = x
» Determine the positive real root of lnx
» A total charge Q is uniformly distributed around a ring-
» For fluid flow in pipes, friction is described by a di-
» Perform the same computation as in Prob. 5.22, but for
» SIMPLE FIXED-POINT ITERATION Applied Numerical Methods with MATLAB fo
» NEWTON-RAPHSON Applied Numerical Methods with MATLAB fo
» SECANT METHODS Applied Numerical Methods with MATLAB fo
» BRENT’S METHOD Applied Numerical Methods with MATLAB fo
» MATLAB FUNCTION: Applied Numerical Methods with MATLAB fo
» POLYNOMIALS Applied Numerical Methods with MATLAB fo
» CASE STUDY PIPE FRICTION CASE STUDY continued
» CASE STUDY continued CASE STUDY continued
» Use a fixed-point iteration and b the Newton-
» Use a the Newton-Raphson method and b the modi-
» Develop an M-file for the secant method. Along with
» Develop an M-file for the modified secant method.
» Differentiate Eq. E6.4.1 to get Eq. E6.4.2. a
» Perform the identical MATLAB operations as those
» In control systems analysis, transfer functions are
» Use the Newton-Raphson method to find the root of Given a
» INTRODUCTION AND BACKGROUND Applied Numerical Methods with MATLAB fo
» MULTIDIMENSIONAL OPTIMIZATION Applied Numerical Methods with MATLAB fo
» CASE STUDY EQUILIBRIUM AND MINIMUM POTENTIAL ENERGY
» Employ the following methods to find the minimum of
» Consider the following function:
» Develop a single script to a generate contour and
» The head of a groundwater aquifer is described in
» Recent interest in competitive and recreational cycling
» The normal distribution is a bell-shaped curve defined by
» Use the Applied Numerical Methods with MATLAB fo
» Given the following function:
» The specific growth rate of a yeast that produces an
» A compound A will be converted into B in a stirred
» Develop an M-file to locate a minimum with the
» Develop an M-file to implement parabolic interpola-
» Pressure measurements are taken at certain points
» The trajectory of a ball can be computed with
» The deflection of a uniform beam subject to a linearly
» The torque transmitted to an induction motor is a func-
» The length of the longest ladder that can negotiate
» MATRIX ALGEBRA OVERVIEW Applied Numerical Methods with MATLAB fo
» SOLVING LINEAR ALGEBRAIC EQUATIONS WITH MATLAB
» CASE STUDY CURRENTS AND VOLTAGES IN CIRCUITS CASE STUDY continued
» Five reactors linked by pipes are shown in Fig. P.
» SOLVING SMALL NUMBERS OF EQUATIONS
» MATLAB M-file: Operation Counting
» PIVOTING Applied Numerical Methods with MATLAB fo
» TRIDIAGONAL SYSTEMS Applied Numerical Methods with MATLAB fo
» CASE STUDY MODEL OF A HEATED ROD CASE STUDY continued
» Given the system of equations
» Given the equations Applied Numerical Methods with MATLAB fo
» An electrical engineer supervises the production of three
» Develop an M-file function based on Fig. 9.5 to im-
» GAUSS ELIMINATION AS LU FACTORIZATION
» CHOLESKY FACTORIZATION Applied Numerical Methods with MATLAB fo
» MATLAB LEFT DIVISION Applied Numerical Methods with MATLAB fo
» Use Cholesky factorization to determine [U] so that THE MATRIX INVERSE
» Norms and Condition Number in MATLAB
» CASE STUDY INDOOR AIR POLLUTION CASE STUDY continued
» Determine the matrix inverse for the system described
» Determine A Applied Numerical Methods with MATLAB fo
» Determine the Frobenius and row-sum norms for the
» Use MATLAB to determine the spectral condition num-
» Besides the Hilbert matrix, there are other matrices
» Use MATLAB to determine the spectral condition
» Repeat Prob. 11.10, but for the case of a six-
» The Lower Colorado River consists of a series of four a
» A chemical constituent flows between three reactors a
» LINEAR SYSTEMS: GAUSS-SEIDEL Applied Numerical Methods with MATLAB fo
» NONLINEAR SYSTEMS Applied Numerical Methods with MATLAB fo
» CASE STUDY CHEMICAL REACTIONS
» Use the Gauss-Seidel method to solve the following
» Repeat Prob. 12.3 but use Jacobi iteration.
» The following system of equations is designed to de-
» Solve the following system using three iterations with a
» MATHEMATICAL BACKGROUND Applied Numerical Methods with MATLAB fo
» PHYSICAL BACKGROUND Applied Numerical Methods with MATLAB fo
» THE POWER METHOD Applied Numerical Methods with MATLAB fo
» CASE STUDY EIGENVALUES AND EARTHQUAKES CASE STUDY continued
» Repeat Example but for three masses with the m’s =
» Use the power method to determine the highest eigen-
» Use the power method to determine the lowest eigen-
» Derive the set of differential equations for a three
» Consider the mass-spring system in Fig. P. The fre-
» STATISTICS REVIEW Applied Numerical Methods with MATLAB fo
» RANDOM NUMBERS AND SIMULATION
» LINEAR LEAST-SQUARES REGRESSION Applied Numerical Methods with MATLAB fo
» LINEARIZATION OF NONLINEAR RELATIONSHIPS
» COMPUTER APPLICATIONS Applied Numerical Methods with MATLAB fo
» CASE STUDY continued CASE STUDY continued CASE STUDY continued
» Using the same approach as was employed to derive
» Beyond the examples in Fig. 14.13, there are other
» The concentration of E. coli bacteria in a swimming
» Rather than using the base-e exponential model
» Determine an equation to predict metabolism rate as a
» On average, the surface area A of human beings is
» 2.12 2.15 2.20 2.22 2.23 2.26 2.30 Applied Numerical Methods with MATLAB fo
» An investigator has reported the data tabulated below
» Develop an M-file function to compute descriptive
» Modify the Applied Numerical Methods with MATLAB fo
» Develop an M-file function to fit a power model.
» Below are data taken from a batch reactor of bacterial
» A transportation engineering study was conducted to
» In water-resources engineering, the sizing of reser-
» Perform the same computation as in Example 14.3,
» POLYNOMIAL REGRESSION Applied Numerical Methods with MATLAB fo
» MULTIPLE LINEAR REGRESSION Applied Numerical Methods with MATLAB fo
» GENERAL LINEAR LEAST SQUARES
» QR FACTORIZATION AND THE BACKSLASH OPERATOR
» NONLINEAR REGRESSION Applied Numerical Methods with MATLAB fo
» CASE STUDY FITTING EXPERIMENTAL DATA CASE STUDY continued
» Fit a parabola to the data from Table 14.1. Determine
» Fit a cubic polynomial to the following data:
» Use multiple linear regression to derive a predictive
» As compared with the models from Probs. 15.5 and
» Use multiple linear regression to fit
» The following data were collected for the steady flow
» In Prob. 14.8 we used transformations to linearize
» Enzymatic reactions are used extensively to charac-
» The following data represent the bacterial growth in a
» Dynamic viscosity of water μ10
» Use the following set of pressure-volume data to find
» Environmental scientists and engineers dealing with
» It is known that the data tabulated below can be mod-
» hr Applied Numerical Methods with MATLAB fo
» CURVE FITTING WITH SINUSOIDAL FUNCTIONS
» CONTINUOUS FOURIER SERIES Applied Numerical Methods with MATLAB fo
» FOURIER INTEGRAL AND TRANSFORM
» DISCRETE FOURIER TRANSFORM DFT
» THE POWER SPECTRUM Applied Numerical Methods with MATLAB fo
» CASE STUDY SUNSPOTS Applied Numerical Methods with MATLAB fo
» The pH in a reactor varies sinusoidally over the course
» The solar radiation for Tucson, Arizona, has been tab-
» Use MATLAB to generate 64 points from the function
» INTRODUCTION TO INTERPOLATION Applied Numerical Methods with MATLAB fo
» NEWTON INTERPOLATING POLYNOMIAL Applied Numerical Methods with MATLAB fo
» LAGRANGE INTERPOLATING POLYNOMIAL Applied Numerical Methods with MATLAB fo
» INVERSE INTERPOLATION Applied Numerical Methods with MATLAB fo
» EXTRAPOLATION AND OSCILLATIONS Applied Numerical Methods with MATLAB fo
» Given the data Applied Numerical Methods with MATLAB fo
» Use the portion of the given steam table for super-
» The following data for the density of nitrogen gas ver-
» Ohm’s law states that the voltage drop V across an
» The acceleration due to gravity at an altitude y above
» INTRODUCTION TO SPLINES Applied Numerical Methods with MATLAB fo
» LINEAR SPLINES Applied Numerical Methods with MATLAB fo
» CUBIC SPLINES Applied Numerical Methods with MATLAB fo
» PIECEWISE INTERPOLATION IN MATLAB
» MULTIDIMENSIONAL INTERPOLATION Applied Numerical Methods with MATLAB fo
» CASE STUDY HEAT TRANSFER CASE STUDY continued
» A reactor is thermally stratified as in the following
» The following is the built-in
» Develop a plot of a cubic spline fit of the following
» The following data define the sea-level concentra- a
» NEWTON-COTES FORMULAS Applied Numerical Methods with MATLAB fo
» THE TRAPEZOIDAL RULE Applied Numerical Methods with MATLAB fo
» SIMPSON’S RULES Applied Numerical Methods with MATLAB fo
» HIGHER-ORDER NEWTON-COTES FORMULAS Applied Numerical Methods with MATLAB fo
» INTEGRATION WITH UNEQUAL SEGMENTS
» OPEN METHODS MULTIPLE INTEGRALS
» CASE STUDY COMPUTING WORK WITH NUMERICAL INTEGRATION CASE STUDY continued CASE STUDY continued
» Derive Eq. 19.4 by integrating Eq. 19.3. Evaluate the following integral:
» INTRODUCTION Applied Numerical Methods with MATLAB fo
» ROMBERG INTEGRATION Applied Numerical Methods with MATLAB fo
» GAUSS QUADRATURE Applied Numerical Methods with MATLAB fo
» MATLAB Functions: If the error is larger than the tolerance,
» CASE STUDY ROOT-MEAN-SQUARE CURRENT CASE STUDY continued
» Evaluate the following integral a analytically,
» Evaluate the following integral with a Romberg inte-
» Evaluate the double integral Compute work as described in Sec. 19.9, but use the
» Suppose that the current through a resistor is de-
» km 1100 1500 2450 3400 3630 4500 km 5380 6060 6280 6380 Applied Numerical Methods with MATLAB fo
» HIGH-ACCURACY DIFFERENTIATION FORMULAS Applied Numerical Methods with MATLAB fo
» RICHARDSON EXTRAPOLATION Applied Numerical Methods with MATLAB fo
» DERIVATIVES OF UNEQUALLY SPACED DATA
» DERIVATIVES AND INTEGRALS FOR DATA WITH ERRORS
» PARTIAL DERIVATIVES Applied Numerical Methods with MATLAB fo
» NUMERICAL DIFFERENTIATION WITH MATLAB
» CASE STUDY VISUALIZING FIELDS CASE STUDY continued
» Develop an M-file to obtain first-derivative estimates
» Develop an M-file function that computes first and
» A jet fighter’s position on an aircraft carrier’s runway
» Use the following data to find the velocity and accel-
» A plane is being tracked by radar, and data are taken
» Use regression to estimate the acceleration at each
» The normal distribution is defined as
» The following data were generated from the normal Use the
» The objective of this problem is to compare second-
» The pressure gradient for laminar flow through a con-
» The following data for the specific heat of benzene
» The specific heat at constant pressure c
» OVERVIEW IMPROVEMENTS OF EULER’S METHOD
» RUNGE-KUTTA METHODS Applied Numerical Methods with MATLAB fo
» SYSTEMS OF EQUATIONS Applied Numerical Methods with MATLAB fo
» CASE STUDY PREDATOR-PREY MODELS AND CHAOS
» Develop an M-file to solve a single ODE with Heun’s
» Develop an M-file to solve a single ODE with the
» Develop an M-file to solve a system of ODEs with
» Isle Royale National Park is a 210-square-mile archi-
» The motion of a damped spring-mass system
» Perform the same simulations as in Section 22.6 for ADAPTIVE RUNGE-KUTTA METHODS
» MULTISTEP METHODS Applied Numerical Methods with MATLAB fo
» STIFFNESS Applied Numerical Methods with MATLAB fo
» MATLAB APPLICATION: BUNGEE JUMPER WITH CORD
» CASE STUDY PLINY’S INTERMITTENT FOUNTAIN CASE STUDY continued
» Given Applied Numerical Methods with MATLAB fo
» THE SHOOTING METHOD Applied Numerical Methods with MATLAB fo
» FINITE-DIFFERENCE METHODS Applied Numerical Methods with MATLAB fo
» A cable is hanging from two supports at A and B
» In Prob. 24.16, the basic differential equation of the
Show more