Differential Equations

Total Page:16

File Type:pdf, Size:1020Kb

Differential Equations Chapter 5 Differential equations 5.1 Ordinary and partial differential equations A differential equation is a relation between an unknown function and its derivatives. Such equations are extremely important in all branches of science; mathematics, physics, chemistry, biochemistry, economics,. Typical example are • Newton’s law of cooling which states that the rate of change of temperature is proportional to the temperature difference between it and that of its surroundings. This is formulated in mathematical terms as the differential equation dT = k(T − T ), dt 0 where T (t) is the temperature of the body at time t, T0 the temperature of the surroundings (a constant) and k a constant of proportionality, • the wave equation, ∂2u ∂2u = c2 , ∂t2 ∂x2 where u(x, t) is the displacement (from a rest position) of the point x at time t and c is the wave speed. The first example has unknown function T depending on one variable t and the relation involves the first dT order (ordinary) derivative . This is a ordinary differential equation, abbreviated to ODE. dt The second example has unknown function u depending on two variables x and t and the relation involves ∂2u ∂2u the second order partial derivatives and . This is a partial differential equation, abbreviated to PDE. ∂x2 ∂t2 The order of a differential equation is the order of the highest derivative that appears in the relation. The unknown function is called the dependent variable and the variable or variables on which it depend are the independent variables. A solution of a differential equation is an expression for the dependent variable in terms of the independent one(s) which satisfies the relation. The general solution includes all possible solutions and typically includes arbitrary constants (in the case of an ODE) or arbitrary functions (in the case of a PDE.) A solution without arbitrary constants/functions is called a particular solution. Often we find a particular solution to a differential equation by giving extra conditions in the form of initial or boundary conditions. 49 Example 5.1 Show that cos ct and sin ct are solutions of the second order ODE u¨ + c2u = 0, where c is a constant. Deduce that A cos ct + B sin ct is also a solution for arbitrary constants A, B. Remark It is conventional to useu ˙ to denote the derivative (of u) with respect to t andu ¨ the second derivative with respect to t. In a similar way we will use u0 and u00 to denotes derivatives with respect to x. Solution : ¤ Remarks 1. A differential equation which contains no products of terms involving the dependent variable is said to be linear. For example, d2y + x2 = 0, u + u = 0, dx t x are linear but d2y + y2 = 0, u + uu = 0, dx2 t x are nonlinear. The ODE in the above example is also linear. As illustrated, any linear combination (A cos ct+B sin ct) of given solutions (cos ct, sin ct) is also a solution. This is true for all linear differential equations and makes them much easier to solve. It is not true of nonlinear differential equations. 2. The solution u = A cos ct + B sin ct contains two arbitrary constants and is the general solution of the second order ODEu ¨ + c2u = 0. This illustrates the fact that the general solution of an nth order ODE contains n arbitrary constants. 50 5.2 First order ODEs We will study methods for solving first order ODEs which have one of three special forms. Separable type1 Consider first, for example, the ODE dy = x. dx This is precisely the same as writing Z 1 2 y = x dx = 2 x + C, where C is an arbitrary constant—the constant of integration. This is the general solution of the ODE. More generally, ODEs of the form dy = f(x)g(y), dx are called separable and can be solved in a similar way. Dividing by g(y) and integrating both sides with respect to x we get Z Z 1 dy dx = f(x) dx. g(y) dx Recalling the formula for integration by change of variables, we see that the integral on the left is equal to Z 1 dy. g(y) Hence the separable ODE is equivalent to the relationship between integrals Z Z 1 dy = f(x) dx. g(y) Assuming that these integrals may be evaluated, we get G(y) = F (x) + C, where C is an arbitrary constant. This gives the general solution. Example 5.2 Find the general solution of y0 = ex+4y, and the particular solution for which y(0) = 0. Solution : 1This type of ODE is studied in level-1 modules. 51 Answer: The general solution, 1 x 1 x y = − 4 log(−4(e + C)) = − 4 log(C − 4e ), where we have relabelled the arbitrary constant C (= −4 × old value of C). The particular solution is 1 x y = − 4 log(5 − 4e ). ¤ Remark The same techniques may also be used to solve PDEs which are separable in the same sense. For example, the PDE ∂u y = u2, ∂x only has a derivative with respect to x and so we regard y as fixed and rewrite it as Z Z du y 2 = dx. y fixed u y fixed Hence 1 −y −y = x + A(y), i.e., u = . u x + A(y) where the “constant of integration” is the arbitrary function A(y). This must, in general, depend on y since this variable was fixed during the integration. Exact type An ODE of the form d φ(x, y) = 0, dx is said to be exact and obviously has the general solution φ(x, y) = C, where C is an arbitrary constant. Being able to recognise that an ODE can be expressed in this form is more difficult however. Using the chain rule for functions of two variables, we have d ∂φ dy ∂φ φ(x, y) = + , dx ∂x dx ∂y (see Example ??). Hence an ODE of the form dy P (x, y) + Q(x, y) = 0, dx is exact provided there exists some φ(x, y) such that ∂φ ∂φ P = and Q = . ∂x ∂y For example, the ODE dy y + x = 0, dx is exact since we can take φ = xy giving ∂φ ∂φ = y and = x. ∂x ∂y In general, exact ODEs are characterised by the following theorem. 52 Theorem The ODE dy P (x, y) + Q(x, y) = 0, dx is exact if and only if ∂P ∂Q = . ∂y ∂x Proof If the ODE is exact then there exists φ such that ∂φ ∂φ P = and Q = , ∂x ∂y and hence it is necessary that ∂P ∂2φ ∂2φ ∂Q = = = . ∂y ∂y∂x ∂x∂y ∂x The proof that this condition is enough to guarantee the existence of φ is omitted. ¤ Example 5.3 Show that the ODE ¡ ¢ dy y + cos(x + y) + x − y + cos(x + y) = 0, dx is exact an find its general solution. Solution : 53 Answer: The general solution is 1 2 xy + sin(x + y) − 2 y = C, where C is an arbitrary constant. ¤ Integrating factors The differential equation dy P + Q = 0, (1) dx has the same solutions as the one obtained by multiplying through by a factor µ(x, y) dy (µP ) + (µQ) = 0. (2) dx This opens up the possibility that, by multiplying by an integrating factor µ, we may convert a non-exact ODE (1), for which ∂P ∂Q 6= , ∂y ∂x into an exact one (2), for which ∂ ∂ (µP ) = (µQ). ∂y ∂x An important special case of this is covered at level-1. Recall that the linear first order ODE dy + a(x)y = b(x), dx has an integrating factor µZ ¶ µ = exp a dx . The ODE may be written as d ¡ ¢ µy = µb, dx and the general solution obtained by integration. Example 5.4 Find the general solution of dy x − 2y = 2x5. dx Solution : 54 Answer: The general solution is Z 2 2 2 2 3 2 5 2 y = x 2x dx = x ( 3 x + C) = 3 x + Cx . ¤ Example 5.5 Show that the ODE dy 2y + 2x2y2 + (x + x3y) = 0, dx is not exact. Find an integrating factor xn (for some n, to be determined) and hence find its general solution. Solution : 55 Answer: The general solution is 2 1 4 2 φ = x y + 2 x y = C. ¤ Example 5.6 Solve the ODE dy 4xy + 5y3 = , dx 4x2 − 2y3 by finding an integrating factor depending only on y. Solution : Answer: The general solution is 2x2 φ = + 5x + 2y = C. y2 ¤ 5.3 Second order ODEs We will only consider linear second order ODEs, those of the form d2y dy a(x) + b(x) + c(x)y = f(x). (1) dx2 dx 56 If the right hand side is identically zero, we say that the ODE is homogeneous. More generally, there is a homogeneous ODE associated with each ODE of the form (1), obtained by replacing f(x) by 0, d2y dy a(x) + b(x) + c(x)y = 0. (2) dx2 dx If the general solution of the homogeneous form (2) is known, the general solution of the full ODE (1) may be found using the following result. Theorem The general solution of the ODE d2y dy a(x) + b(x) + c(x)y = f(x), dx2 dx is y = CF + PI, where CF is the general solution of homogenous form d2y dy a(x) + b(x) + c(x)y = 0, dx2 dx called the complementary function and PI is any solution of the full ODE, called a particular integral.
Recommended publications
  • Research Brief March 2017 Publication #2017-16
    Research Brief March 2017 Publication #2017-16 Flourishing From the Start: What Is It and How Can It Be Measured? Kristin Anderson Moore, PhD, Child Trends Christina D. Bethell, PhD, The Child and Adolescent Health Measurement Introduction Initiative, Johns Hopkins Bloomberg School of Every parent wants their child to flourish, and every community wants its Public Health children to thrive. It is not sufficient for children to avoid negative outcomes. Rather, from their earliest years, we should foster positive outcomes for David Murphey, PhD, children. Substantial evidence indicates that early investments to foster positive child development can reap large and lasting gains.1 But in order to Child Trends implement and sustain policies and programs that help children flourish, we need to accurately define, measure, and then monitor, “flourishing.”a Miranda Carver Martin, BA, Child Trends By comparing the available child development research literature with the data currently being collected by health researchers and other practitioners, Martha Beltz, BA, we have identified important gaps in our definition of flourishing.2 In formerly of Child Trends particular, the field lacks a set of brief, robust, and culturally sensitive measures of “thriving” constructs critical for young children.3 This is also true for measures of the promotive and protective factors that contribute to thriving. Even when measures do exist, there are serious concerns regarding their validity and utility. We instead recommend these high-priority measures of flourishing
    [Show full text]
  • The Origin of the Peculiarities of the Vietnamese Alphabet André-Georges Haudricourt
    The origin of the peculiarities of the Vietnamese alphabet André-Georges Haudricourt To cite this version: André-Georges Haudricourt. The origin of the peculiarities of the Vietnamese alphabet. Mon-Khmer Studies, 2010, 39, pp.89-104. halshs-00918824v2 HAL Id: halshs-00918824 https://halshs.archives-ouvertes.fr/halshs-00918824v2 Submitted on 17 Dec 2013 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Published in Mon-Khmer Studies 39. 89–104 (2010). The origin of the peculiarities of the Vietnamese alphabet by André-Georges Haudricourt Translated by Alexis Michaud, LACITO-CNRS, France Originally published as: L’origine des particularités de l’alphabet vietnamien, Dân Việt Nam 3:61-68, 1949. Translator’s foreword André-Georges Haudricourt’s contribution to Southeast Asian studies is internationally acknowledged, witness the Haudricourt Festschrift (Suriya, Thomas and Suwilai 1985). However, many of Haudricourt’s works are not yet available to the English-reading public. A volume of the most important papers by André-Georges Haudricourt, translated by an international team of specialists, is currently in preparation. Its aim is to share with the English- speaking academic community Haudricourt’s seminal publications, many of which address issues in Southeast Asian languages, linguistics and social anthropology.
    [Show full text]
  • Chapter 11. Three Dimensional Analytic Geometry and Vectors
    Chapter 11. Three dimensional analytic geometry and vectors. Section 11.5 Quadric surfaces. Curves in R2 : x2 y2 ellipse + =1 a2 b2 x2 y2 hyperbola − =1 a2 b2 parabola y = ax2 or x = by2 A quadric surface is the graph of a second degree equation in three variables. The most general such equation is Ax2 + By2 + Cz2 + Dxy + Exz + F yz + Gx + Hy + Iz + J =0, where A, B, C, ..., J are constants. By translation and rotation the equation can be brought into one of two standard forms Ax2 + By2 + Cz2 + J =0 or Ax2 + By2 + Iz =0 In order to sketch the graph of a quadric surface, it is useful to determine the curves of intersection of the surface with planes parallel to the coordinate planes. These curves are called traces of the surface. Ellipsoids The quadric surface with equation x2 y2 z2 + + =1 a2 b2 c2 is called an ellipsoid because all of its traces are ellipses. 2 1 x y 3 2 1 z ±1 ±2 ±3 ±1 ±2 The six intercepts of the ellipsoid are (±a, 0, 0), (0, ±b, 0), and (0, 0, ±c) and the ellipsoid lies in the box |x| ≤ a, |y| ≤ b, |z| ≤ c Since the ellipsoid involves only even powers of x, y, and z, the ellipsoid is symmetric with respect to each coordinate plane. Example 1. Find the traces of the surface 4x2 +9y2 + 36z2 = 36 1 in the planes x = k, y = k, and z = k. Identify the surface and sketch it. Hyperboloids Hyperboloid of one sheet. The quadric surface with equations x2 y2 z2 1.
    [Show full text]
  • Applications the Formula Y = Mx + B Sometimes Appears with Different
    PRIMARY CONTENT MODULE Algebra I -Linear Equations & Inequalities T-71 Applications The formula y = mx + b sometimes appears with different symbols. For example, instead of x, we could use the letter C. Instead of y, we could use the letter F. Then the equation becomes F = mC + b. All temperature scales are related by linear equations. For example, the temperature in degrees Fahrenheit is a linear function of degrees Celsius. © 1999, CISC: Curriculum and Instruction Steering Committee The WINNING EQUATION PRIMARY CONTENT MODULE Algebra I -Linear Equations & Inequalities T-72 Basic Temperature Facts Water freezes at: 0°C, 32°F Water Boils at: 100°C, 212°F F • (100, 212) • (0, 32) C Can you solve for m and b in F = mC + b? © 1999, CISC: Curriculum and Instruction Steering Committee The WINNING EQUATION PRIMARY CONTENT MODULE Algebra I -Linear Equations & Inequalities T-73 To find the equation relating Fahrenheit to Celsius we need m and b F – F m = 2 1 C2 – C1 212 – 32 m = 100 – 0 180 9 m = = 100 5 9 Therefore F = C + b 5 To find b, substitute the coordinates of either point. 9 32 = (0) + b 5 Therefore b = 32 Therefore the equation is 9 F = C + 32 5 Can you solve for C in terms of F? © 1999, CISC: Curriculum and Instruction Steering Committee The WINNING EQUATION PRIMARY CONTENT MODULE Algebra I -Linear Equations & Inequalities T-74 Celsius in terms of Fahrenheit 9 F = C + 32 5 5 5 9 F = æ C +32ö 9 9è 5 ø 5 5 F = C + (32) 9 9 5 5 F – (32) = C 9 9 5 5 C = F – (32) 9 9 5 C = (F – 32) 9 Example: How many degrees Celsius is77°F? 5 C = (77 – 32) 9 5 C = (45) 9 C = 25° So 72°F = 25°C © 1999, CISC: Curriculum and Instruction Steering Committee The WINNING EQUATION PRIMARY CONTENT MODULE Algebra I -Linear Equations & Inequalities T-75 Standard 8 Algebra I, Grade 8 Standards Students understand the concept of parallel and perpendicular lines and how their slopes are related.
    [Show full text]
  • Form Y-203-I, If You Had More Than One Job, Or If You Had a Job for Only Part of the Year
    Department of Taxation and Finance Yonkers Nonresident Earnings Tax Return Y-203 For the full year January 1, 2020, through December 31, 2020, or fiscal year beginning and ending Name as shown on Form IT-201 or IT-203 Social Security number A Were you a Yonkers resident for any part of the taxable year? (mark an X in the appropriate box) Yes No (see instructions) (See the instructions for Form IT-201 or IT-203 for the definition of a resident.) If Yes: 1. Give period of Yonkers residence. From (mmddyyyy) to (mmddyyyy) 2. Are you reporting Yonkers resident income tax surcharge on your New York State return? ..................................................................................... Yes No (submit explanation) 3. You must complete and submit Form IT-360.1 (see instructions). B Did you or your spouse maintain an apartment or other living quarters in Yonkers during any part of the year?...................................................................................... Yes No If Yes, give address below and enter the number of days spent in Yonkers during 2020: days Address: C Are you reporting income from self-employment (on line 2 below)?......... Yes No If Yes, complete the following: Business name Business address Employer identification number Principal business activity Form of business: Sole proprietorship Partnership Other (explain) Calculation of nonresident earnings tax 1 Gross wages and other employee compensation (see instructions; if claiming an allocation, include amount from line 22) ............................................... 1 .00 2 Net earnings from self-employment (see instructions; if claiming an allocation, include amount from line 32; if a loss, write loss on line 2) ............................................................................................... 2 .00 3 Add lines 1 and 2 (if line 2 is a loss, enter amount from line 1) ...........................................................
    [Show full text]
  • A Quick Algebra Review
    A Quick Algebra Review 1. Simplifying Expressions 2. Solving Equations 3. Problem Solving 4. Inequalities 5. Absolute Values 6. Linear Equations 7. Systems of Equations 8. Laws of Exponents 9. Quadratics 10. Rationals 11. Radicals Simplifying Expressions An expression is a mathematical “phrase.” Expressions contain numbers and variables, but not an equal sign. An equation has an “equal” sign. For example: Expression: Equation: 5 + 3 5 + 3 = 8 x + 3 x + 3 = 8 (x + 4)(x – 2) (x + 4)(x – 2) = 10 x² + 5x + 6 x² + 5x + 6 = 0 x – 8 x – 8 > 3 When we simplify an expression, we work until there are as few terms as possible. This process makes the expression easier to use, (that’s why it’s called “simplify”). The first thing we want to do when simplifying an expression is to combine like terms. For example: There are many terms to look at! Let’s start with x². There Simplify: are no other terms with x² in them, so we move on. 10x x² + 10x – 6 – 5x + 4 and 5x are like terms, so we add their coefficients = x² + 5x – 6 + 4 together. 10 + (-5) = 5, so we write 5x. -6 and 4 are also = x² + 5x – 2 like terms, so we can combine them to get -2. Isn’t the simplified expression much nicer? Now you try: x² + 5x + 3x² + x³ - 5 + 3 [You should get x³ + 4x² + 5x – 2] Order of Operations PEMDAS – Please Excuse My Dear Aunt Sally, remember that from Algebra class? It tells the order in which we can complete operations when solving an equation.
    [Show full text]
  • Writing the Equation of a Line
    Name______________________________ Writing the Equation of a Line When you find the equation of a line it will be because you are trying to draw scientific information from it. In math, you write equations like y = 5x + 2 This equation is useless to us. You will never graph y vs. x. You will be graphing actual data like velocity vs. time. Your equation should therefore be written as v = (5 m/s2) t + 2 m/s. See the difference? You need to use proper variables and units in order to compare it to theory or make actual conclusions about physical principles. The second equation tells me that when the data collection began (t = 0), the velocity of the object was 2 m/s. It also tells me that the velocity was changing at 5 m/s every second (m/s/s = m/s2). Let’s practice this a little, shall we? Force vs. mass F (N) y = 6.4x + 0.3 m (kg) You’ve just done a lab to see how much force was necessary to get a mass moving along a rough surface. Excel spat out the graph above. You labeled each axis with the variable and units (well done!). You titled the graph starting with the variable on the y-axis (nice job!). Now we turn to the equation. First we replace x and y with the variables we actually graphed: F = 6.4m + 0.3 Then we add units to our slope and intercept. The slope is found by dividing the rise by the run so the units will be the units from the y-axis divided by the units from the x-axis.
    [Show full text]
  • Ffontiau Cymraeg
    This publication is available in other languages and formats on request. Mae'r cyhoeddiad hwn ar gael mewn ieithoedd a fformatau eraill ar gais. [email protected] www.caerphilly.gov.uk/equalities How to type Accented Characters This guidance document has been produced to provide practical help when typing letters or circulars, or when designing posters or flyers so that getting accents on various letters when typing is made easier. The guide should be used alongside the Council’s Guidance on Equalities in Designing and Printing. Please note this is for PCs only and will not work on Macs. Firstly, on your keyboard make sure the Num Lock is switched on, or the codes shown in this document won’t work (this button is found above the numeric keypad on the right of your keyboard). By pressing the ALT key (to the left of the space bar), holding it down and then entering a certain sequence of numbers on the numeric keypad, it's very easy to get almost any accented character you want. For example, to get the letter “ô”, press and hold the ALT key, type in the code 0 2 4 4, then release the ALT key. The number sequences shown from page 3 onwards work in most fonts in order to get an accent over “a, e, i, o, u”, the vowels in the English alphabet. In other languages, for example in French, the letter "c" can be accented and in Spanish, "n" can be accented too. Many other languages have accents on consonants as well as vowels.
    [Show full text]
  • The Geometry of the Phase Diffusion Equation
    J. Nonlinear Sci. Vol. 10: pp. 223–274 (2000) DOI: 10.1007/s003329910010 © 2000 Springer-Verlag New York Inc. The Geometry of the Phase Diffusion Equation N. M. Ercolani,1 R. Indik,1 A. C. Newell,1,2 and T. Passot3 1 Department of Mathematics, University of Arizona, Tucson, AZ 85719, USA 2 Mathematical Institute, University of Warwick, Coventry CV4 7AL, UK 3 CNRS UMR 6529, Observatoire de la Cˆote d’Azur, 06304 Nice Cedex 4, France Received on October 30, 1998; final revision received July 6, 1999 Communicated by Robert Kohn E E Summary. The Cross-Newell phase diffusion equation, (|k|)2T =∇(B(|k|) kE), kE =∇2, and its regularization describes natural patterns and defects far from onset in large aspect ratio systems with rotational symmetry. In this paper we construct explicit solutions of the unregularized equation and suggest candidates for its weak solutions. We confirm these ideas by examining a fourth-order regularized equation in the limit of infinite aspect ratio. The stationary solutions of this equation include the minimizers of a free energy, and we show these minimizers are remarkably well-approximated by a second-order “self-dual” equation. Moreover, the self-dual solutions give upper bounds for the free energy which imply the existence of weak limits for the asymptotic minimizers. In certain cases, some recent results of Jin and Kohn [28] combined with these upper bounds enable us to demonstrate that the energy of the asymptotic minimizers converges to that of the self-dual solutions in a viscosity limit. 1. Introduction The mathematical models discussed in this paper are motivated by physical systems, far from equilibrium, which spontaneously form patterns.
    [Show full text]
  • Numerical Algebraic Geometry and Algebraic Kinematics
    Numerical Algebraic Geometry and Algebraic Kinematics Charles W. Wampler∗ Andrew J. Sommese† January 14, 2011 Abstract In this article, the basic constructs of algebraic kinematics (links, joints, and mechanism spaces) are introduced. This provides a common schema for many kinds of problems that are of interest in kinematic studies. Once the problems are cast in this algebraic framework, they can be attacked by tools from algebraic geometry. In particular, we review the techniques of numerical algebraic geometry, which are primarily based on homotopy methods. We include a review of the main developments of recent years and outline some of the frontiers where further research is occurring. While numerical algebraic geometry applies broadly to any system of polynomial equations, algebraic kinematics provides a body of interesting examples for testing algorithms and for inspiring new avenues of work. Contents 1 Introduction 4 2 Notation 5 I Fundamentals of Algebraic Kinematics 6 3 Some Motivating Examples 6 3.1 Serial-LinkRobots ............................... ..... 6 3.1.1 Planar3Rrobot ................................. 6 3.1.2 Spatial6Rrobot ................................ 11 3.2 Four-BarLinkages ................................ 13 3.3 PlatformRobots .................................. 18 ∗General Motors Research and Development, Mail Code 480-106-359, 30500 Mound Road, Warren, MI 48090- 9055, U.S.A. Email: [email protected] URL: www.nd.edu/˜cwample1. This material is based upon work supported by the National Science Foundation under Grant DMS-0712910 and by General Motors Research and Development. †Department of Mathematics, University of Notre Dame, Notre Dame, IN 46556-4618, U.S.A. Email: [email protected] URL: www.nd.edu/˜sommese. This material is based upon work supported by the National Science Foundation under Grant DMS-0712910 and the Duncan Chair of the University of Notre Dame.
    [Show full text]
  • Bessel's Differential Equation Mathematical Physics
    R. I. Badran Bessel's Differential Equation Mathematical Physics Bessel's Differential Equation: 2 Recalling the DE y n y 0 which has a sinusoidal solution (i.e. sin nx and cos nx) and knowing that these solutions can be treated as power series, we can find a solution to the Bessel's DE which is written as: 2 2 2 x y xy (x p )y 0 . The solution is represented by a series. This series very much look like a damped sine or cosine. It is called a Bessel function. To solve the Bessel' DE, we apply the Frobenius method by mn assuming a series solution of the form y an x . n0 Substitute this solution into the DE equation and after some mathematical steps you may find that the indicial equation is 2 2 m p 0 where m= p. Also you may get a1=0 and hence all odd a's are zero as well. The recursion relation can be found as a a n n2 (n m 2)2 p 2 with (n=0, 1, 2, 3, ……etc.). Case (1): m= p (seeking the first solution of Bessel DE) We get the solution 2 4 p x x y a x 1 2(2p 2) 2 4(2p 2)(2p 4) This can be rewritten as: x p2n J (x) y a (1)n p 2n n0 2 n!( p n)! 1 Put a 2 p p! The Bessel function has the factorial form x p2n J (x) (1)n p 2n p , n0 n!( p n)!2 R.
    [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]