Back to noteBack to top

Pomodoro

Pomodoro timer is idle

Systems of ODEs Practice

GitHub Changelog

Showing all 27 problems

0 of 27 completed

Direct Practice

1.1Write a System in Matrix Form

Exam I | Problem 1.1 | Matrix Form · Systems of ODEs

Rewrite the system in matrix form:

$$ \begin{aligned} x' &= 2x - y \\ y' &= 4x + 3y \end{aligned} $$

1.2Classify a Linear System

Exam I | Problem 1.2 | Linear Systems · Homogeneous vs. Nonhomogeneous

Classify the system as linear, autonomous, homogeneous, or nonhomogeneous:

$$ \mathbf{x}' = \begin{bmatrix} 1 & 0 \\ 2 & -3 \end{bmatrix} \mathbf{x} \begin{bmatrix} \sin t \\ 1 \end{bmatrix}. $$

1.3Count the Constants in a 4x4 System

Exam I | Problem 1.3 | Solution Space · Linear Systems

A first-order linear homogeneous system has size $4 \times 4$.

How many arbitrary constants appear in the general solution?

1.4Find All Equilibria of a Nonlinear System

Exam I | Problem 1.4 | Equilibria · Nonlinear Systems

Find all equilibria of the system

$$ \begin{aligned} x' &= x(3-x) \\ y' &= y(y-2) \end{aligned} $$

1.5Use an Eigenpair to Write a Solution

Exam I | Problem 1.5 | Eigenvalues · Eigenvectors

Suppose $A\mathbf{v} = -2\mathbf{v}$.

What solution of $\mathbf{x}' = A\mathbf{x}$ does this eigenpair generate?

1.6Interpret a Negative Eigenvalue

Exam I | Problem 1.6 | Eigenvalues · Stability

A mode of a system has eigenvalue $\lambda = -5$.

What does that tell you about the behavior of that mode?

1.7Interpret Complex Eigenvalues

Exam I | Problem 1.7 | Complex Eigenvalues · Oscillation

A system has eigenvalues

$$ \lambda = 1 \pm 4i. $$

What qualitative behavior should you expect?

1.8Compute Trace and Determinant

Exam I | Problem 1.8 | Trace-Determinant Test · 2x2 Systems

For the matrix

$$ A = \begin{bmatrix} 3 & -2 \\ 5 & -1 \end{bmatrix}, $$

find $\operatorname{tr}(A)$ and $\det(A)$.

1.9Classify Stability from Eigenvalues

Exam I | Problem 1.9 | Stability · Eigenvalues

A linear $2 \times 2$ system has eigenvalues $-1$ and $-4$.

What type of equilibrium does the origin have?

1.10State the Linearization Formula

Exam I | Problem 1.10 | Linearization · Jacobian

Near an equilibrium point $\mathbf{x}^*$, what first-order approximation do you use for a nonlinear system?

Integrated Practice

2.1Find a Characteristic Polynomial

Exam II | Problem 2.1 | Characteristic Polynomial · Eigenvalues

For

$$ A = \begin{bmatrix} 1 & 2 \\ 0 & 4 \end{bmatrix}, $$

find the characteristic polynomial and the eigenvalues.

2.2Solve a Diagonal System

Exam II | Problem 2.2 | Matrix Exponential · Initial Value Problems

Solve the initial value problem

$$ \mathbf{x}' = \begin{bmatrix} -2 & 0 \\ 0 & 3 \end{bmatrix} \mathbf{x}, \qquad \mathbf{x}(0) = \begin{bmatrix} 4 \\ -1 \end{bmatrix}. $$

2.3Build a General Solution from Eigenpairs

Exam II | Problem 2.3 | Eigenvalues · Eigenvectors · General Solution

Suppose a matrix $A$ has eigenpairs

$$ (2, \begin{bmatrix}1 \\ 1\end{bmatrix}) \quad \text{and} \quad (-1, \begin{bmatrix}1 \\ -1\end{bmatrix}). $$

Write the general solution of $\mathbf{x}' = A\mathbf{x}$.

2.4Classify from Trace and Determinant

Exam II | Problem 2.4 | Trace-Determinant Test · Stability

A $2 \times 2$ matrix has trace $-2$ and determinant $5$.

Determine whether the eigenvalues are real or complex, and classify the equilibrium.

2.5Convert a Mass-Spring Equation

Exam II | Problem 2.5 | Modeling Patterns · First-Order Systems

A spring-mass system satisfies

$$ x'' + 2x' + 9x = 0. $$

Let $u=x$ and $v=x'$. Write the equivalent first-order system.

2.6Find the Jacobian Matrix

Exam II | Problem 2.6 | Linearization · Jacobian

Find the Jacobian matrix of

$$ \mathbf{f}(x,y) = \begin{bmatrix} x^2 + y \\ xy - 1 \end{bmatrix}. $$

2.7Write the Variation-of-Parameters Formula

Exam II | Problem 2.7 | Nonhomogeneous Systems · Variation of Parameters

For the forced system

$$ \mathbf{x}' = A\mathbf{x} + \mathbf{g}(t), $$

let $\Phi(t)$ be a fundamental matrix for $\mathbf{x}' = A\mathbf{x}$.

What formula gives a particular solution?

2.8Handle a Repeated Eigenvalue

Exam II | Problem 2.8 | Generalized Eigenvectors · Jordan Form

If a $2 \times 2$ system has a repeated eigenvalue $\lambda$ and only one eigenvector $\mathbf{v}$, what is a common form of a second independent solution?

Applied Problems

3.1Find Equilibria in a Predator-Prey Model

Final | Problem 3.1 | Predator-Prey Models · Equilibria

A predator-prey model is

$$ \begin{aligned} x' &= x(3-y) \\ y' &= y(x-2) \end{aligned} $$

where $x$ and $y$ are the population levels.

Find all equilibria.

3.2Convert a Damped Oscillator

Final | Problem 3.2 | Modeling Patterns · First-Order Systems

A mass-spring-damper system satisfies

$$ 2x'' + 6x' + 8x = 0. $$

Let $u=x$ and $v=x'$.

Write the equivalent first-order system.

3.3Find the Steady State of a Forced System

Final | Problem 3.3 | Nonhomogeneous Systems · Equilibria

A model is given by

$$ \begin{aligned} x' &= -3x + y + 4 \\ y' &= 2x - 2y + 1 \end{aligned} $$

Find the equilibrium point.

3.4Classify a Circuit Model

Final | Problem 3.4 | Phase Portraits · Stability · 2x2 Systems

A circuit model is

$$ \begin{aligned} x' &= -x + 2y \\ y' &= -3x - 4y \end{aligned} $$

Determine the type of equilibrium at the origin.

3.5Linearize a Nonlinear System at the Origin

Final | Problem 3.5 | Linearization · Jacobian · Stability

Consider the nonlinear system

$$ \begin{aligned} x' &= x(1-y) \\ y' &= y(2-x) \end{aligned} $$

Use the linearization at $(0,0)$ to determine the local behavior of the origin.

Challenge / Synthesis

4.1Solve a Defective Linear System

Final | Problem 4.1 | Generalized Eigenvectors · Jordan Form

Solve the system

$$ \mathbf{x}' = \begin{bmatrix} 3 & 1 \\ 0 & 3 \end{bmatrix} \mathbf{x}. $$

4.2Shift a Forced System and Classify It

Final | Problem 4.2 | Nonhomogeneous Systems · Stability · Eigenvalues

Consider the forced system

$$ \begin{aligned} x' &= 2x - y + 1 \\ y' &= x + 2y - 3 \end{aligned} $$

Find the equilibrium point, shift variables to move the equilibrium to the origin, and classify the shifted linear system.

4.3Analyze a Nonlinear System with Linearization

Final | Problem 4.3 | Nonlinear Systems · Equilibria · Linearization

Consider

$$ \begin{aligned} x' &= x(1-y) \\ y' &= y(x-2) \end{aligned} $$

Find the equilibria and use linearization to determine which ones you can classify directly.

4.4Classify a Damped Oscillator from Its System

Final | Problem 4.4 | Modeling Patterns · Characteristic Polynomial · Stability

A damped oscillator satisfies

$$ x'' + 4x' + 13x = 0. $$

Let $u=x$ and $v=x'$. Convert the equation to a first-order system, find the eigenvalues of the coefficient matrix, and classify the motion.