Calculadora de Determinante | CalcxApp

Calculadora online gratuita com gráficos e resultados detalhados.

Matrix

Determinant

-11.0000

Cofactor Expansion

First row expansion (3×3)

Cofactor Contributions

Cofactor Expansion

StepSub-determinantSignContribution
122.0000+44.0000
2-5.00005.0000
3-20.0000+-60.0000
Determinant-11.0000

Understanding Determinants

What Is a Determinant?

The determinant is a scalar value computed from a square matrix that encodes important properties. For a 2×2 matrix [[a,b],[c,d]], the determinant is ad − bc. For larger matrices, it is computed by cofactor expansion along any row or column.

Geometric Meaning

The absolute value of the determinant represents the scaling factor of the linear transformation described by the matrix. For a 2×2 matrix, |det| equals the area of the parallelogram formed by the column vectors. For 3×3, it equals the volume of the parallelepiped.

Cofactor Expansion

The determinant is computed by expanding along a row (usually the first): det(A) = Σ (−1)^(i+j) × aᵢⱼ × det(Mᵢⱼ), where Mᵢⱼ is the minor matrix obtained by deleting row i and column j. Each sub-determinant is computed recursively until reaching 2×2 matrices.

Properties of Determinants

If det(A) = 0, the matrix is singular (non-invertible). Swapping two rows changes the sign. Multiplying a row by k multiplies the determinant by k. The determinant of a product equals the product of determinants: det(AB) = det(A)×det(B).

Applications

Determinants are used to check if a matrix is invertible, solve systems of linear equations (Cramer's rule), compute eigenvalues, find areas and volumes, and in multivariable calculus for change of variables in integrals.

Practical Example

For the 3×3 matrix [[2,1,3],[0,4,1],[5,2,6]], expand along the first row: det = 2×det([[4,1],[2,6]]) − 1×det([[0,1],[5,6]]) + 3×det([[0,4],[5,2]]).

Sub-determinants: det([[4,1],[2,6]]) = 24−2 = 22. det([[0,1],[5,6]]) = 0−5 = −5. det([[0,4],[5,2]]) = 0−20 = −20. Result: 2(22) − 1(−5) + 3(−20) = 44 + 5 − 60 = −11.

Perguntas Frequentes

O que significa um zero determinant mean?

A zero determinant means o matrix é singular — isso tem não inverse. O columns são linearly dependent, o system de equations tem não unique solution, e o transformation collapses space into um lower dimension.

Can um determinant ser negativo?

Yes. A negativo determinant indicates that o transformation includes um reflection (changes orientation). O absolute valor ainda gives o scaling fator.

Qual row deveria I expand along?

Any row ou column works. Choosing o um com o maioria zeros é maioria efficient desde cada zero eliminates um term em o expansion. O resultado é o mesmo regardless de qual row ou column você escolha.

Como I encontre o determinant de um 4×4 matrix?

Expand along um row para get quatro 3×3 sub-determinants, então expand cada de those para get 2×2 determinants. This gives 24 multiplication terms. Our calculadora handles up para 5×5 automatically.

O que é o relationship entre determinant e inverse?

A matrix A tem um inverse se e apenas se det(A) ≠ 0. O fórmula é A⁻¹ = (1/det(A)) × adj(A), onde adj(A) é o adjugate matrix de cofactors.

Disclaimer: Esta calculadora fornece estimativas para fins informativos e educacionais. Para decisões importantes, consulte um profissional qualificado.

References

  1. Wikipedia. "Determinant." en.wikipedia.org
  2. Khan Academy. "Determinants." khanacademy.org
  3. Wolfram MathWorld. "Determinant." mathworld.wolfram.com
  4. MIT OpenCourseWare. "Linear Algebra." ocw.mit.edu
  5. Brilliant. "Determinants." brilliant.org

Comentários