Homogeneous EquationsExpected Educational ResultsConstant Coefficients MethodInvestigation 05Solve Polynomial EquationsUse Technology to Find Roots of Characteristic EquationsUse Technology to Verify Solutions to
Author: John J Weber III, PhD Corresponding Textbook Sections:
Section 4.2 – Homogeneous Linear Equations: The General Solution
Objective 10–1: I can identify if two or more functions are linearly-independent.
Objective 10–2: I can identify the characteristic equation for
Objective 10–3: I can find the most general solution to
Identify the characteristic equation for the homogeneous linear DE.
Completely solve the characteristic equation.
Use the roots of the characteristic equation for the homogeneous,
Solve the following
Mathematica
1(* Example: Solve x^4-4x^3-3x^2+18x=0 *)2Solve[x^4 - 4x^3 - 3x^2 + 18x == 0, x]x1(* Example: Solve y'''(x) - 3y''(x) - 40 y'(x) = 0 *)2(* DSolve uses function notation for dependent variable; and has 3 arguments *)3(* 1. ODE equation with == for = *)4(* 2. dependent variable, in function notation *)5(* 3. independent variable *)6
7DSolve[y'''[x] - 3y''[x] - 40 y'[x] == 0, y[x], x]Warnings:
Be very careful with the syntax. Syntax is the set of rules on how to write computer code. Every software program has its own unique syntax. Some basic Mathematica syntax is located at: http://www.jjw3.com/TECH_Common_Functions.pdf.
To execute code (including comment codes), press and hold the SHIFT key and press the ENTER key.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License [http://creativecommons.org/licenses/by-nc-sa/4.0/].
Last Modified: Monday, 6 September 2020 17:33 EDT