Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lectures
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mathematics for Quantum Physics
lectures
Commits
cd9d0d13
Commit
cd9d0d13
authored
4 years ago
by
Scarlett Gauthier
Browse files
Options
Downloads
Patches
Plain Diff
Add page 3 of notes up to phase portrait.
parent
64ebfda5
No related branches found
Branches containing commit
No related tags found
1 merge request
!8
Differential Equations Lecture 1
Pipeline
#40897
passed
4 years ago
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/differential_equations_1.md
+75
-0
75 additions, 0 deletions
src/differential_equations_1.md
with
75 additions
and
0 deletions
src/differential_equations_1.md
+
75
−
0
View file @
cd9d0d13
...
...
@@ -161,6 +161,81 @@ $$\Rightarrow F(x(t)) = G(t) + c $$
Given this form of general solution, knowledge of specific functions $f, g$ would
make it possible to solve for $x(t)$.
!!! check "Example: First order linear differential equation with coefficient t"
Let us apply the above strategy to the following equation,
$$
\d
ot{x}= t x^2 .$$
Comparison to the strategy indicates that we should define $f(x)=x^2$ and
$g(t)=t$. As before, we can re-arrange the equation
$$
\f
rac{
\d
ot{x}}{x^2} = t. $$
It is then necessary to find $F(x)$, the anti-derivative of $
\f
rac{1}{f(x)}$,
or the left hand side of the above equation, as well as $G(t)$, the
anti-derivative of $g(t)$, or the right hand side of the previous equation.
Integrating, one finds
$$F(x) = -
\f
rac{1}{x} $$
$$G(t)=
\f
rac{1}{2}t^2 + c. $$
Accordingly then, the equation we have is
$$-
\f
rac{1}{x} =
\f
rac{1}{2} t^2 + c. $$
At this point, it is possible to solve for $x(t)$ by re-arrangement
$$x(t)=
\f
rac{-2}{t^2 + c_0}, $$
where in the last line we have defined $c_0 = 2c$. Once again, specification
of an initial condition would allow determination of $c_0$ directly. To see
this, suppose $x(0) = 2$. Inserting this into the equation for $x(t)$ we have
$$2 =
\f
rac{-2}{c_0} $$
$$
\R
ightarrow c_0 = -1.$$
Having solved for $c_0$, with the choice of initial condition $x(0)=2$, the
full equation for $x(t)$ is
$$x(t)=
\f
rac{-2}{t^2 -1}. $$
!!! check "Example: First order linear differential equation with general
non-constant coefficient function"
Let us apply the strategy for dealing with non-constant coefficient functions
to the more general equation
$$\dot{x}= g(t) \cdot x. $$
This equation suggests that we first define $f(x)=x$ and then find $F(x)$ and
$G(t)$, the anti-derivatives of $\frac{1}{f(x)}$ and $g(t)$, respectively. Doing
so, we determine
$$F(x) = log(x) $$
Continuing to follow the protocol, we arrive at the equation
$$log(x) = G(t) + c.$$
Exponentiating and defining $c_0:=e^c$, we obtain an equation for $x(t)$,
$$x(t)= c_0 e^{G(t)} .$$
So far we have only considered first order differential equations. If we consider
extending the strategies we have developed to higher order equations such as
$$x^{(2)}(t)=f(x), $$
with f(x) a linear function, then our work will swiftly become tedious. Later on
we will develop the general theory for linear equations which will allow us to
tackle such higher order equations. For now, we move on to considering systems
of coupled first order linear DE's.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment