1001Ferramentas
λCalculators

Eigenvalues 2×2 Matrix

Compute eigenvalues of 2×2 matrix solving λ² − (a+d)λ + (ad−bc) = 0.

Eigenvalues of a 2×2 matrix: characteristic equation

Take a matrix A = [[a, b], [c, d]]. Its eigenvalues λ are the scalars for which A·v = λ·v holds with some non-zero eigenvector v. Those values turn out to be the roots of the characteristic equation det(A − λI) = 0. For a 2×2 matrix that expands neatly into λ² − tr(A)·λ + det(A) = 0, where the trace is tr(A) = a + d and the determinant is det(A) = ad − bc. Solving it gives the closed form λ = (tr ± √(tr² − 4·det)) / 2. What the discriminant Δ = tr² − 4·det tells you is the kind of answer you'll get. With Δ > 0 you have two distinct real eigenvalues; Δ = 0 means a single repeated real one; Δ < 0 gives a complex conjugate pair. And by the spectral theorem, any symmetric matrix is guaranteed real eigenvalues and orthogonal eigenvectors.

Applications: PCA, stability and quantum mechanics

You run into eigenvalues all over applied math. In machine learning they power Principal Component Analysis (PCA), where the largest eigenvalue of the covariance matrix marks the direction of maximum variance. In dynamical systems they drive stability analysis, since the signs of the Jacobian's eigenvalues classify each equilibrium. Engineers use them for structural vibration modes; Markov chains rely on them too, with PageRank built on the principal eigenvector; in quantum mechanics the eigenvalues of a Hermitian operator are the observables; and they show up again in spectral tomography.

FAQ

Can a real matrix have complex eigenvalues? It can. Rotation matrices are the classic example, with a conjugate pair sitting on the unit circle.

What does a zero eigenvalue mean? That the matrix is singular and can't be inverted, since det(A) = 0.

Are eigenvalues unique? The set of them is. Eigenvectors, on the other hand, are only fixed up to scaling.

How to find eigenvectors? For each eigenvalue λ, solve (A − λI)·v = 0.

Related Tools

Matrix Determinant 2×2 / 3×3

Compute determinant of 2×2 and 3×3 matrices using Sarrus rule.

×

Matrix Multiplication

Multiply two matrices A and B (compatible dimensions) and show C = A·B.

Determinant of 4×4 Matrix

Compute determinant of 4×4 matrix by Laplace expansion.

✂️

Cutting Clearance (Punch-Die)

Calculate the per-side cutting clearance between punch and die in sheet cutting, c = (a ÷ 100)·t, from the recommended percentage clearance a (% of thickness) and the sheet thickness t (mm). Cutting clearance is the small gap between punch and die, and one of the MOST important parameters in sheet-cut quality. As the punch descends, it shears the material, but the cut is not a clean slice: the material first deforms (roll-over), then shears giving a smooth zone (burnish), and finally FRACTURES, giving a rough zone and a burr. The correct clearance makes the cracks starting from punch and die MEET, giving a clean cut with minimal burr. The ideal clearance depends on material and thickness: typically 5-10% of thickness per side for steels (less for soft materials, more for hard). Too SMALL a clearance gives a secondary cut (double burr) and tool wear and needs more force; too LARGE gives heavy burr, distortion and poor edge quality. Getting clearance right is essential for tool life, required force and cut-part quality. Enter the recommended percentage clearance and the sheet thickness.

📋

Vegetable Seedling Spacing Lookup

Pick lettuce, tomato, carrot, onion, arugula or basil and read the recommended row × plant spacing in cm, from carrot 25×8 cm to tomato 100×60 cm.

🔲

2x2 Matrix Determinant and Inverse

Calculate the determinant and inverse of a 2x2 matrix from its four entries. See the step-by-step and the exact result in fractions or decimals.

The results provided by this tool are for general informational and educational purposes only and do not constitute professional, financial, medical, legal, tax or accounting advice. Always confirm important decisions with a qualified professional and official sources.