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
78c0ad88
Commit
78c0ad88
authored
4 years ago
by
Scarlett Gauthier
Browse files
Options
Downloads
Patches
Plain Diff
Finish adding page 4
parent
0ba2217b
No related branches found
Branches containing commit
No related tags found
1 merge request
!8
Differential Equations Lecture 1
Pipeline
#41010
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
+48
-1
48 additions, 1 deletion
src/differential_equations_1.md
with
48 additions
and
1 deletion
src/differential_equations_1.md
+
48
−
1
View file @
78c0ad88
...
...
@@ -28,6 +28,7 @@ equation, $n-1$ initial conditions are necessary. To understand why we need
initial conditions, look at the following example.
!!! check "Example: Initial conditions"
Consider the following calculus problem,
$$\dot{f}(x)=x. $$
...
...
@@ -48,6 +49,7 @@ Essentially initial conditions are needed when solving differential equations so
that unknowns resulting from integration may be determined.
!!! info Terminology for Differential Equations
1. If a differential equation does not explicitly contain the
independent variable $t$, it is called an *autonomous equation*.
2. If the largest derivative in a differential equation is of first order,
...
...
@@ -91,6 +93,7 @@ to this type of equation are
$$x(t) = F(t) + c. $$
!!! check "Example: First order linear differential equation with constant coefficients"
Given the equation
$$\dot{x}(t)=t, $$
...
...
@@ -115,6 +118,7 @@ solution! Having a specific form for the function $f(x)$ can often makes it
possible to solve either implicitly or explicity for the function $x(t)$.
!!! check "Example: Autonomous first order linear differential equation with constant coefficients"
Given the equation
$$\dot{x} = \lambda x, $$
...
...
@@ -163,6 +167,7 @@ Given this form of general solution, knowledge of specific functions $f, g$ woul
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,
$$\dot{x}= t x^2 .$$
...
...
@@ -254,7 +259,7 @@ each arrow. The position of each of the little cars is determined by an initial
condition. Since the field lines do not cross, and the cars begin on different
field lines, they will remain on different field lines.

<img
src=
"
figures/Phase_portrait_with_cars.png
"
width=
"700"
>
If $
**f**
(
**x**
)$ is not crazy, for axample if it is continuous and
differentiable, then it is possible to prove the following two properties for
...
...
@@ -265,7 +270,49 @@ a system of first order linear DE's
initial condition and the equation i.e. we know where each point "came from"
$
**x**
(t'<t)$.
# Systems of linear first order differential equations
## Homogeneous systems ##
Any homogeneous system of first order linear DE's can be written in the form
$$
\d
ot{
**x**
} =
**A**
(t)
**x**
, $$
where $
**A**
$ is a linear operator. The system is called homogeneous because it
does not contain an additional term which is not dependent on $
**x**
$ (for
example an additive constant or an additional function depending only on t).
An important property of such a system is
*linearity*
, which has the following
implictions
1.
If $
**x**
(t)$ is a solution then $c
**x**
(t)$ is as well, for some constant c
2.
If $
**x**
(t)$ and $
**y**
(t)$ are both solutions, then so is $a
**x**
(t)+ b
**y**
(t)$,
where a and b are both constants.
These properties have special importance for modelling physical systems, due to
the principle of superposition, which is especially important in quantum physics,
as well as electromagnetism and fluid dynamics. For example in electromagnetism
when there are four charges arranged in a square acting on a test charge
located within the square, it is sufficient to sum the individual forces in
order to find the total force. Physically, this is the principle of superposition,
and mathematically superposition is linearity and applies to linear models.
### General Solution ###
For a system of $n$ linear first order DE's with $n
\t
imes n$ linear operator
$
**A**
(t)$, the general solution can be written as
$$
**x**
(t) = c_1
**\phi**
_1 (t) + c_
2
**\phi**
_2 (t) + \cdots + c_
n
**\phi**
_n (t),$$
where $
\{
**\phi**
_1 (t), **\phi**_
2(t),
\c
dots,
**\phi**
_n (t)
\}
$ are $n$
independent soutions which form a basis for the solution space, and
$c_1, c_2,
\c
dots c_n$ are constants.
$
\{
**\phi**
_1 (t), **\phi**_
2(t),
\c
dots,
**\phi**
_n (t)
\}
$ are a basis if and
only if they are linearly independent for fixed $t$:
$$det
\b
ig{(}
**\phi**
_1 (t) | **\phi**_
2 (t) |
\c
dots |
**\phi**
_n (t)
\b
ig{)}
\n
eq 0.$$
If this condition holds for one $t$, it holds for all $t$.
...
...
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