Glossary and Notation

Total Page:16

File Type:pdf, Size:1020Kb

Glossary and Notation A Glossary and Notation AB: Adams–Bashforth—names of a family of explicit LMMs. AB(2) denotes the two-step, second-order Adams–Bashforth method. AM: Adams–Moulton—names of a family of implicit LMMs. AM(2) denotes the two-step, third-order Adams–Moulton method. BDF: backward differentiation formula. BE: backward Euler (method). Cp+1 : error constant of a pth-order LMM. CF: complementary function—the general solution of a homogeneous linear difference or differential equation. 4E: difference equation. E(·): expected value. fn : the value of f(t, x) at t = tn and x = xn. FE: forward Euler (method). GE: global error—the difference between the exact solution x(tn) at t = tn and the numerical solution xn: en = x(tn) − xn. ∇: gradient operator. ∇F denotes the vector of partial derivatives of F. h: step size—numerical solutions are sought at times tn = t0 + nh for n = 0, 1, 2,... D.F. Griffiths, D.J. Higham, Numerical Methods for Ordinary Differential Equations, Springer Undergraduate Mathematics Series, DOI 10.1007/978-0-85729-148-6, © Springer-Verlag London Limited 2010 244 A. Glossary and Notation bh : λh, where λ is the coefficient in the first-order equation x0(t) = λx(t) or an eigenvalue of the matrix A in the system of ODEs x0(t) = Ax(t). I: identity matrix. =(λ): imaginary part of a complex number λ. IAS: interval of absolute stability. IC: initial condition. IVP: initial value problem—an ODE together with initial condition(s). j = m : n: for integers m < n this is shorthand for the sequence of consecutive integers from m to n. That is, j = m, m + 1, m + 2, . , n. Lh : linear difference operator. LMM: linear multistep method. LTE: local truncation error—generally the remainder term R in a Taylor series expansion. ODE: ordinary differential equation. P(a ≤ X ≤ b): probability that X lies in the interval [a, b]. PS: particular solution—any solution of an inhomogeneous linear difference or differential equation. ρ(r): first characteristic polynomial of a LMM. R: region of absolute stability. R0: interval of absolute stability. <(λ): real part of a complex number λ. RK: Runge–Kutta. RK(p)(p ≤ 4) is a p–stage, pth order RK method. RK(p, q) denotes a pair of RK methods for use in adaptive time–stepping. R(bh): stability function of an RK method. σ(r): second characteristic polynomial of a LMM. SDE: stochastic differential equation. tf : final time at which solution is required. tn: a grid point, generally, tn = t0 + nh, at which the numerical solution is computed. Tn: local truncation error at time t = tn. A. Glossary and Notation 245 Tbn: In Chapter 11 it denotes an approximation to the local truncation error Tn, usually based on the leading term in its Taylor expansion. In Chapter 13 it denotes the local truncation error based on the solution of the modified, rather than the original, IVP. TS: Taylor Series. TS(p)—the Taylor Series method with p + 1 terms (up to, and including, pth derivatives). var(·): variance. x: a scalar-valued quantity while x denotes a vector-valued quantity. x0(t): derivative of x(t) with respect to t. 0 00 0 00 xn, xn, xn,... : approximations to x(tn), x (tn), x (tn),... X ∼ N(µ, σ2): a normally distributed random variable with mean µ and vari- ance σ2. B Taylor Series B.1 Expansions The idea behind Taylor series expansions is to approximate a smooth function g : R → R locally by a polynomial. We suppose here that all derivatives of g are bounded. The approximating polynomial will be chosen to match as many derivatives of g as possible at a certain point, say a. Fixing a, we have, from the definition of a derivative, g(a + h) − g(a) ≈ g0(a), (B.1) h for small h. This rearranges to g(a + h) ≈ g(a) + hg0(a). (B.2) As h varies, the right-hand side in (B.2) defines the tangent line to the function g based on the point x = a. This is a first order polynomial approximation, or Taylor series expansion with two terms—it is close to the function g for sufficiently small h. Differentiating with respect to h and setting h = 0 we see that the polynomial g(a) + hg0(a) in (B.2) matches the zeroth and first derivatives of g. We may improve the accuracy of the approximation by adding a second order term of the form h2g00(a)/2; so h2 g(a + h) ≈ g(a) + hg0(a) + g00(a). (B.3) 2 248 B. Taylor Series The right-hand side now matches a further derivative of g at h = 0. Generally, a Taylor series expansion for g about the point a with p + 1 terms has the form 2 p h 00 h g(a + h) ≈ g(a) + hg0(a) + g (a) + ··· + g(p)(a), (B.4) 2 p! where g(p) denotes the pth derivative. This pth-degree polynomial matches derivatives of g at the point a from order zero to p. It is sometimes more convenient to rewrite these expansions with a + h as a single independent variable, say x. The expansions (B.2) and (B.3) then become g(x) ≈ g(a) + (x − a)g0(a) and (x − a)2 g(x) ≈ g(a) + (x − a)g0(a) + g00(a) 2 respectively, and x is required to be close to a for the approximations to be close to g. For the general Taylor expansion (B.4) we then have (x − a)2 (x − a)p g(x) ≈ g(a) + (x − a)g0(a) + g00(a) + ··· + g(p)(a). (B.5) 2 p! 2 Figure B.1 illustrates the case of p = 1, 2, 3 when g(x) = x e1−x and a = 1. The expansions developed in this chapter are extended in Appendix C to functions of two variables. When the point of expansion is the origin, Taylor series are often referred to as Maclaurin series. B.2 Accuracy Increasing the order of our Taylor series expansion by one involves adding a term with an extra power of h. The next term that we would include in the right-hand side of (B.4) to improve the accuracy would be proportional hp+1. Using the asymptotic order notation, as introduced in Section 2.2, we may write h2 hp g(a + h) = g(a) + hg0(a) + g00(a) + ··· + g(p)(a) + O(hp+1), 2 p! as h → 0, to quantify the accuracy in (B.4). For the version in (B.5), this becomes (x − a)2 (x − a)p g(x) = g(a)+(x−a)g0(a)+ g00(a)+···+ g(p)(a)+O((x−a)p+1), 2 p! as x → a. B.2 Accuracy 249 Two terms Three terms Four terms 1.5 1.5 1.5 1 1 1 0.5 0.5 0.5 0 0 0 0 1 2 0 1 2 0 1 2 x x x 2 Fig. B.1 In each picture, the function g(x) = x e1−x is shown as a solid curve. On the left, the Taylor series with two terms (linear) about the point x = 1 is shown as a dashed curve. The middle and right pictures show the Taylor series with three terms (quadratic) and four terms (cubic) respectively The error introduced by the Taylor series can be expressed succinctly, albeit slightly mysteriously. Returning to (B.1), the Mean Value Theorem tells us that the secant approximation (g(a + h) − g(a))/h must match the first derivative of g for at least one point,1 say c, between a and a + h; that is, g(a + h) − g(a) = g0(c). h This shows that g(a + h) = g(a) + hg0(c). (B.6) This idea extends to a general Taylor series expansion. For (B.4), we have h2 hp hp+1 g(a+h) = g(a)+hg0(a)+ g00(a)+···+ g(p)(a)+ g(p+1)(c), (B.7) 2 p! (p + 1)! where c is a point between a and a + h. We emphasize that 1For a concrete example, suppose that a car is driven at an average speed of 100 miles per hour over a stretch of road. This average speed is computed as the ratio of total distance to total time, corresponding to the secant curve on the left hand side of (B.1). It is intuitively reasonable that this car cannot always have been travelling more slowly than 100 miles per hour over this period, and similarly it cannot always have been travelling more quickly than 100 miles per hour. So at some point in time over that period, it must have been travelling at exactly 100 miles per hour. (Of course more than one such time may exist.) 250 B. Taylor Series – although we know that at least one such c exists in that interval, its exact location is unknown; – c may be different for each choice of h. For (B.5), we may write (x − a)2 g(x) = g(a) + (x − a)g0(a) + g00(a)+ 2 (x − a)p (x − a)p+1 ··· + g(p)(a) + g(p+1)(c), (B.8) p! (p + 1)! where c is a point between a and x. We refer to (B.7) and (B.8) as Taylor series expansions with remainder. EXERCISES 2 B.1.? Show that the first four terms in the Taylor series of g(x) = x e1−x about the point a = 1 are 2 5 3 g(x) ≈ 1 − (x − 1) − (x − 1) + 3 (x − 1) .
Recommended publications
  • Topic 7 Notes 7 Taylor and Laurent Series
    Topic 7 Notes Jeremy Orloff 7 Taylor and Laurent series 7.1 Introduction We originally defined an analytic function as one where the derivative, defined as a limit of ratios, existed. We went on to prove Cauchy's theorem and Cauchy's integral formula. These revealed some deep properties of analytic functions, e.g. the existence of derivatives of all orders. Our goal in this topic is to express analytic functions as infinite power series. This will lead us to Taylor series. When a complex function has an isolated singularity at a point we will replace Taylor series by Laurent series. Not surprisingly we will derive these series from Cauchy's integral formula. Although we come to power series representations after exploring other properties of analytic functions, they will be one of our main tools in understanding and computing with analytic functions. 7.2 Geometric series Having a detailed understanding of geometric series will enable us to use Cauchy's integral formula to understand power series representations of analytic functions. We start with the definition: Definition. A finite geometric series has one of the following (all equivalent) forms. 2 3 n Sn = a(1 + r + r + r + ::: + r ) = a + ar + ar2 + ar3 + ::: + arn n X = arj j=0 n X = a rj j=0 The number r is called the ratio of the geometric series because it is the ratio of consecutive terms of the series. Theorem. The sum of a finite geometric series is given by a(1 − rn+1) S = a(1 + r + r2 + r3 + ::: + rn) = : (1) n 1 − r Proof.
    [Show full text]
  • 1 Approximating Integrals Using Taylor Polynomials 1 1.1 Definitions
    Seunghee Ye Ma 8: Week 7 Nov 10 Week 7 Summary This week, we will learn how we can approximate integrals using Taylor series and numerical methods. Topics Page 1 Approximating Integrals using Taylor Polynomials 1 1.1 Definitions . .1 1.2 Examples . .2 1.3 Approximating Integrals . .3 2 Numerical Integration 5 1 Approximating Integrals using Taylor Polynomials 1.1 Definitions When we first defined the derivative, recall that it was supposed to be the \instantaneous rate of change" of a function f(x) at a given point c. In other words, f 0 gives us a linear approximation of f(x) near c: for small values of " 2 R, we have f(c + ") ≈ f(c) + "f 0(c) But if f(x) has higher order derivatives, why stop with a linear approximation? Taylor series take this idea of linear approximation and extends it to higher order derivatives, giving us a better approximation of f(x) near c. Definition (Taylor Polynomial and Taylor Series) Let f(x) be a Cn function i.e. f is n-times continuously differentiable. Then, the n-th order Taylor polynomial of f(x) about c is: n X f (k)(c) T (f)(x) = (x − c)k n k! k=0 The n-th order remainder of f(x) is: Rn(f)(x) = f(x) − Tn(f)(x) If f(x) is C1, then the Taylor series of f(x) about c is: 1 X f (k)(c) T (f)(x) = (x − c)k 1 k! k=0 Note that the first order Taylor polynomial of f(x) is precisely the linear approximation we wrote down in the beginning.
    [Show full text]
  • Appendix a Short Course in Taylor Series
    Appendix A Short Course in Taylor Series The Taylor series is mainly used for approximating functions when one can identify a small parameter. Expansion techniques are useful for many applications in physics, sometimes in unexpected ways. A.1 Taylor Series Expansions and Approximations In mathematics, the Taylor series is a representation of a function as an infinite sum of terms calculated from the values of its derivatives at a single point. It is named after the English mathematician Brook Taylor. If the series is centered at zero, the series is also called a Maclaurin series, named after the Scottish mathematician Colin Maclaurin. It is common practice to use a finite number of terms of the series to approximate a function. The Taylor series may be regarded as the limit of the Taylor polynomials. A.2 Definition A Taylor series is a series expansion of a function about a point. A one-dimensional Taylor series is an expansion of a real function f(x) about a point x ¼ a is given by; f 00ðÞa f 3ðÞa fxðÞ¼faðÞþf 0ðÞa ðÞþx À a ðÞx À a 2 þ ðÞx À a 3 þÁÁÁ 2! 3! f ðÞn ðÞa þ ðÞx À a n þÁÁÁ ðA:1Þ n! © Springer International Publishing Switzerland 2016 415 B. Zohuri, Directed Energy Weapons, DOI 10.1007/978-3-319-31289-7 416 Appendix A: Short Course in Taylor Series If a ¼ 0, the expansion is known as a Maclaurin Series. Equation A.1 can be written in the more compact sigma notation as follows: X1 f ðÞn ðÞa ðÞx À a n ðA:2Þ n! n¼0 where n ! is mathematical notation for factorial n and f(n)(a) denotes the n th derivation of function f evaluated at the point a.
    [Show full text]
  • Operations on Power Series Related to Taylor Series
    Operations on Power Series Related to Taylor Series In this problem, we perform elementary operations on Taylor series – term by term differen­ tiation and integration – to obtain new examples of power series for which we know their sum. Suppose that a function f has a power series representation of the form: 1 2 X n f(x) = a0 + a1(x − c) + a2(x − c) + · · · = an(x − c) n=0 convergent on the interval (c − R; c + R) for some R. The results we use in this example are: • (Differentiation) Given f as above, f 0(x) has a power series expansion obtained by by differ­ entiating each term in the expansion of f(x): 1 0 X n−1 f (x) = a1 + a2(x − c) + 2a3(x − c) + · · · = nan(x − c) n=1 • (Integration) Given f as above, R f(x) dx has a power series expansion obtained by by inte­ grating each term in the expansion of f(x): 1 Z a1 a2 X an f(x) dx = C + a (x − c) + (x − c)2 + (x − c)3 + · · · = C + (x − c)n+1 0 2 3 n + 1 n=0 for some constant C depending on the choice of antiderivative of f. Questions: 1. Find a power series representation for the function f(x) = arctan(5x): (Note: arctan x is the inverse function to tan x.) 2. Use power series to approximate Z 1 2 sin(x ) dx 0 (Note: sin(x2) is a function whose antiderivative is not an elementary function.) Solution: 1 For question (1), we know that arctan x has a simple derivative: , which then has a power 1 + x2 1 2 series representation similar to that of , where we subsitute −x for x.
    [Show full text]
  • Calculus Terminology
    AP Calculus BC Calculus Terminology Absolute Convergence Asymptote Continued Sum Absolute Maximum Average Rate of Change Continuous Function Absolute Minimum Average Value of a Function Continuously Differentiable Function Absolutely Convergent Axis of Rotation Converge Acceleration Boundary Value Problem Converge Absolutely Alternating Series Bounded Function Converge Conditionally Alternating Series Remainder Bounded Sequence Convergence Tests Alternating Series Test Bounds of Integration Convergent Sequence Analytic Methods Calculus Convergent Series Annulus Cartesian Form Critical Number Antiderivative of a Function Cavalieri’s Principle Critical Point Approximation by Differentials Center of Mass Formula Critical Value Arc Length of a Curve Centroid Curly d Area below a Curve Chain Rule Curve Area between Curves Comparison Test Curve Sketching Area of an Ellipse Concave Cusp Area of a Parabolic Segment Concave Down Cylindrical Shell Method Area under a Curve Concave Up Decreasing Function Area Using Parametric Equations Conditional Convergence Definite Integral Area Using Polar Coordinates Constant Term Definite Integral Rules Degenerate Divergent Series Function Operations Del Operator e Fundamental Theorem of Calculus Deleted Neighborhood Ellipsoid GLB Derivative End Behavior Global Maximum Derivative of a Power Series Essential Discontinuity Global Minimum Derivative Rules Explicit Differentiation Golden Spiral Difference Quotient Explicit Function Graphic Methods Differentiable Exponential Decay Greatest Lower Bound Differential
    [Show full text]
  • History of Algebra and Its Implications for Teaching
    Maggio: History of Algebra and its Implications for Teaching History of Algebra and its Implications for Teaching Jaime Maggio Fall 2020 MA 398 Senior Seminar Mentor: Dr.Loth Published by DigitalCommons@SHU, 2021 1 Academic Festival, Event 31 [2021] Abstract Algebra can be described as a branch of mathematics concerned with finding the values of unknown quantities (letters and other general sym- bols) defined by the equations that they satisfy. Algebraic problems have survived in mathematical writings of the Egyptians and Babylonians. The ancient Greeks also contributed to the development of algebraic concepts. In this paper, we will discuss historically famous mathematicians from all over the world along with their key mathematical contributions. Mathe- matical proofs of ancient and modern discoveries will be presented. We will then consider the impacts of incorporating history into the teaching of mathematics courses as an educational technique. 1 https://digitalcommons.sacredheart.edu/acadfest/2021/all/31 2 Maggio: History of Algebra and its Implications for Teaching 1 Introduction In order to understand the way algebra is the way it is today, it is important to understand how it came about starting with its ancient origins. In a mod- ern sense, algebra can be described as a branch of mathematics concerned with finding the values of unknown quantities defined by the equations that they sat- isfy. Algebraic problems have survived in mathematical writings of the Egyp- tians and Babylonians. The ancient Greeks also contributed to the development of algebraic concepts, but these concepts had a heavier focus on geometry [1]. The combination of all of the discoveries of these great mathematicians shaped the way algebra is taught today.
    [Show full text]
  • 20-Finding Taylor Coefficients
    Taylor Coefficients Learning goal: Let’s generalize the process of finding the coefficients of a Taylor polynomial. Let’s find a general formula for the coefficients of a Taylor polynomial. (Students complete worksheet series03 (Taylor coefficients).) 2 What we have discovered is that if we have a polynomial C0 + C1x + C2x + ! that we are trying to match values and derivatives to a function, then when we differentiate it a bunch of times, we 0 get Cnn!x + Cn+1(n+1)!x + !. Plugging in x = 0 and everything except Cnn! goes away. So to (n) match the nth derivative, we must have Cn = f (0)/n!. If we want to match the values and derivatives at some point other than zero, we will use the 2 polynomial C0 + C1(x – a) + C2(x – a) + !. Then when we differentiate, we get Cnn! + Cn+1(n+1)!(x – a) + !. Now, plugging in x = a makes everything go away, and we get (n) Cn = f (a)/n!. So we can generate a polynomial of any degree (well, as long as the function has enough derivatives!) that will match the function and its derivatives to that degree at a particular point a. We can also extend to create a power series called the Taylor series (or Maclaurin series if a is specifically 0). We have natural questions: • For what x does the series converge? • What does the series converge to? Is it, hopefully, f(x)? • If the series converges to the function, we can use parts of the series—Taylor polynomials—to approximate the function, at least nearby a.
    [Show full text]
  • Sequences, Series and Taylor Approximation (Ma2712b, MA2730)
    Sequences, Series and Taylor Approximation (MA2712b, MA2730) Level 2 Teaching Team Current curator: Simon Shaw November 20, 2015 Contents 0 Introduction, Overview 6 1 Taylor Polynomials 10 1.1 Lecture 1: Taylor Polynomials, Definition . .. 10 1.1.1 Reminder from Level 1 about Differentiable Functions . .. 11 1.1.2 Definition of Taylor Polynomials . 11 1.2 Lectures 2 and 3: Taylor Polynomials, Examples . ... 13 x 1.2.1 Example: Compute and plot Tnf for f(x) = e ............ 13 1.2.2 Example: Find the Maclaurin polynomials of f(x) = sin x ...... 14 2 1.2.3 Find the Maclaurin polynomial T11f for f(x) = sin(x ) ....... 15 1.2.4 QuestionsforChapter6: ErrorEstimates . 15 1.3 Lecture 4 and 5: Calculus of Taylor Polynomials . .. 17 1.3.1 GeneralResults............................... 17 1.4 Lecture 6: Various Applications of Taylor Polynomials . ... 22 1.4.1 RelativeExtrema .............................. 22 1.4.2 Limits .................................... 24 1.4.3 How to Calculate Complicated Taylor Polynomials? . 26 1.5 ExerciseSheet1................................... 29 1.5.1 ExerciseSheet1a .............................. 29 1.5.2 FeedbackforSheet1a ........................... 33 2 Real Sequences 40 2.1 Lecture 7: Definitions, Limit of a Sequence . ... 40 2.1.1 DefinitionofaSequence .......................... 40 2.1.2 LimitofaSequence............................. 41 2.1.3 Graphic Representations of Sequences . .. 43 2.2 Lecture 8: Algebra of Limits, Special Sequences . ..... 44 2.2.1 InfiniteLimits................................ 44 1 2.2.2 AlgebraofLimits.............................. 44 2.2.3 Some Standard Convergent Sequences . .. 46 2.3 Lecture 9: Bounded and Monotone Sequences . ..... 48 2.3.1 BoundedSequences............................. 48 2.3.2 Convergent Sequences and Closed Bounded Intervals . .... 48 2.4 Lecture10:MonotoneSequences .
    [Show full text]
  • Polynomials, Taylor Series, and the Temperature of the Earth How Hot Is It ?
    GEOL 595 - Mathematical Tools in Geology Lab Assignment # 12- Nov 13, 2008 (Due Nov 19) Name: Polynomials, Taylor Series, and the Temperature of the Earth How Hot is it ? A.Linear Temperature Gradients Near the surface of the Earth, borehole drilling is used to measure the temperature as a function of depth in the Earth’s crust, much like the 3D picture you see below. These types of measurements tell us that there is a constant gradient in temperture with depth. 1. Write the form of a linear equation for temperature (T) as a function of depth (z) that depends on the temperature gradient (G). Assume the temperature at the surface is known (To). Also draw a picture of how temperture might change with depth in a borehole, and label these variables. 1 2. Measurements in boreholes tell us that the average temperature gradient increases by 20◦C for every kilometer in depth (written: 20◦C km−1). This holds pretty well for the upper 100 km on continental crust. Determine the temperature below the surface at 45 km depth if the ◦ surface temperature, (To) is 10 C. 3. Extrapolate this observation of a linear temperature gradient to determine the temperature at the base of the mantle (core-mantle boundary) at 2700 km depth and also at the center of the Earth at 6378 km depth. Draw a graph (schematically - by hand) of T versus z and label each of these layers in the Earth’s interior. 2 4. The estimated temperature at the Earth’s core is 4300◦C.
    [Show full text]
  • The Evolution of Equation-Solving: Linear, Quadratic, and Cubic
    California State University, San Bernardino CSUSB ScholarWorks Theses Digitization Project John M. Pfau Library 2006 The evolution of equation-solving: Linear, quadratic, and cubic Annabelle Louise Porter Follow this and additional works at: https://scholarworks.lib.csusb.edu/etd-project Part of the Mathematics Commons Recommended Citation Porter, Annabelle Louise, "The evolution of equation-solving: Linear, quadratic, and cubic" (2006). Theses Digitization Project. 3069. https://scholarworks.lib.csusb.edu/etd-project/3069 This Thesis is brought to you for free and open access by the John M. Pfau Library at CSUSB ScholarWorks. It has been accepted for inclusion in Theses Digitization Project by an authorized administrator of CSUSB ScholarWorks. For more information, please contact [email protected]. THE EVOLUTION OF EQUATION-SOLVING LINEAR, QUADRATIC, AND CUBIC A Project Presented to the Faculty of California State University, San Bernardino In Partial Fulfillment of the Requirements for the Degre Master of Arts in Teaching: Mathematics by Annabelle Louise Porter June 2006 THE EVOLUTION OF EQUATION-SOLVING: LINEAR, QUADRATIC, AND CUBIC A Project Presented to the Faculty of California State University, San Bernardino by Annabelle Louise Porter June 2006 Approved by: Shawnee McMurran, Committee Chair Date Laura Wallace, Committee Member , (Committee Member Peter Williams, Chair Davida Fischman Department of Mathematics MAT Coordinator Department of Mathematics ABSTRACT Algebra and algebraic thinking have been cornerstones of problem solving in many different cultures over time. Since ancient times, algebra has been used and developed in cultures around the world, and has undergone quite a bit of transformation. This paper is intended as a professional developmental tool to help secondary algebra teachers understand the concepts underlying the algorithms we use, how these algorithms developed, and why they work.
    [Show full text]
  • Mathematics for Earth Science
    Mathematics for Earth Science The module covers concepts such as: • Maths refresher • Fractions, Percentage and Ratios • Unit conversions • Calculating large and small numbers • Logarithms • Trigonometry • Linear relationships Mathematics for Earth Science Contents 1. Terms and Operations 2. Fractions 3. Converting decimals and fractions 4. Percentages 5. Ratios 6. Algebra Refresh 7. Power Operations 8. Scientific Notation 9. Units and Conversions 10. Logarithms 11. Trigonometry 12. Graphs and linear relationships 13. Answers 1. Terms and Operations Glossary , 2 , 3 & 17 are TERMS x4 + 2 + 3 = 17 is an EQUATION 17 is the SUM of + 2 + 3 4 4 4 is an EXPONENT + 2 + 3 = 17 4 3 is a CONSTANT 2 is a COEFFICIENT is a VARIABLE + is an OPERATOR +2 + 3 is an EXPRESSION 4 Equation: A mathematical sentence containing an equal sign. The equal sign demands that the expressions on either side are balanced and equal. Expression: An algebraic expression involves numbers, operation signs, brackets/parenthesis and variables that substitute numbers but does not include an equal sign. Operator: The operation (+ , ,× ,÷) which separates the terms. Term: Parts of an expression− separated by operators which could be a number, variable or product of numbers and variables. Eg. 2 , 3 & 17 Variable: A letter which represents an unknown number. Most common is , but can be any symbol. Constant: Terms that contain only numbers that always have the same value. Coefficient: A number that is partnered with a variable. The term 2 is a coefficient with variable. Between the coefficient and variable is a multiplication. Coefficients of 1 are not shown. Exponent: A value or base that is multiplied by itself a certain number of times.
    [Show full text]
  • Taylor's Theorem and Applications
    Taylor's Theorem and Applications By James S. Cook, November 11, 2018, For Math 132 Online. I wrote this for Math 131 notes when I taught Calculus I at Liberty University around 2009-2013. In short, I see this topic as a natural extension of the discussion of tangent lines and tangent line approximation of functions in first semester calculus. However, most curricula include this in Calculus II. Of course, we don't stop at polynomials in Calculus II. We consider the Taylor series for a function which is formed from the limit of the sequence of Taylor polynomials. That said, we will focus on Taylor Polynomials and the error in replacing f(x) with its k-th Taylor polynomial centered at some point. Naturally, in the context of Calculus II this amounts to studying the error in truncating the Taylor series with a mere polynomial. Let's get to it: 0.1 Taylor's Theorem about polynomial approximation The idea of a Taylor polynomial is that if we are given a set of initial data f(a); f 0(a); f 00(a); : : : ; f (n)(a) for some function f(x) then we can approximate the function with an nth-order polynomial which fits all the given data. Let's see how it works order by order starting with the most silly case. 0.1.1 constant functions Suppose we are given f(a) = yo then To(x) = yo is the zeroth Taylor polynomial for f centered at x = a. Usually you have to be very close to the center of the approximation for this to match the function.
    [Show full text]