apmth 205 quiz 2

a study set for my math quiz

Public 18 cards
Front:

What is the meaning of (A - λI)v = 0?


Back:

1. A and λI act identically on v. 2. when you apply A to v, the result doesn't change direction. it's just scaled by λ.

Front:

Define a singular matrix


Back:

1. not invertible 2. determinant = 0, meaning it collapses some direction to 0

Front:

why must A - λI be singular for an eigenvalue?


Back:

Because ofr a nonzero v to satisfy (A - λI)v = 0, that matrix must have a nontrivial null space and thus a determinant of 0.

Front:

What is the bisection method used for?


Back:

Finding zeroes of a continuous function by repeatedly halving an interval where the function changes sign

Front:

When does the bisection method not work?


Back:

if f(0) and f(1) have the same sign the algorithm may never start, which will always happen if there are an even amount of eigenvalues within the interval

Front:

How many bisection steps for n-digit accuracy?


Back:

log_2(10^n) steps

Front:

Why are eigenvalues the ones that make A - λI singular?


Back:

Because only for those λ's does Av = λv have a nonzero solution v

Front:

Why does symmetry of a matrix A matter computationally?


Back:

It guarantees real eigenvalues and allows orthogonal tridiagonalization.

Front:

what happens to non-eigenvectors when you apply a matrix (linear transformation)?


Back:

they usually change direction.

Front:

Why do symmetric matrices always have real eigenvalues?


Back:

Because for symmetric A, you can show v^T Av is always real, and the quadratic form guarantees real stretching, not rotation.

Front:

What does the eigenvalue tell you geometrically?


Back:

The scale factor by which the transformation stretches or compresses space in that eigenvector's direction

Front:

What does it mean geometrically if det(A - λI) = 0?


Back:

It means at that λ, the transformation A−λI flattens space in at least one direction. that direction is the eigenvector.

Front:

What happens if a matrix has fewer than n distinct eigenvalues?


Back:

Some directions share the same scaling factor; the matrix isn't fully diagonalizable if it lacks enough independent eigenvectors.

Front:

Why not just compute the characteristic polynomial and find its roots directly?


Back:

It's numerically unstable for large matrices.

Front:

Why do we use the sign of the determinant in the bisection method?


Back:

Because sign changes indicate where the determinate(A−λI) crosses zero and where A−λI becomes singular

Front:

What does it mean to find the critical points?


Back:

Set the partial derivatives to 0 and then solve for them

Front:

Determinant trace test criteria


Back:

If D > 0 and T > 0 local minimum If D > 0 and T < 0 local maximum If D < 0 saddle

Front:

Determinant trace test steps to get D and T


Back:

Get fxx, fxy and fyy and then D = ac - b^2 and T = a + c