Matrix 2×2 ની ગણતરી કેવી રીતે કરવી
Matrix 2×2 શું છે?
A 2×2 matrix is a rectangular array of four numbers arranged in 2 rows and 2 columns. Matrix operations including determinants, inverses, addition and multiplication are fundamental in linear algebra, computer graphics, and data science.
સૂત્ર
det(A) = ad−bc | A⁻¹ = (1/det) × [d,−b;−c,a] for [[a,b],[c,d]]
- det
- Determinant (scalar)
- A⁻¹
- Matrix Inverse (matrix)
- a,b,c,d
- Matrix Elements (scalars)
પગલું દ્વારા પગલું માર્ગદર્શિકા
- 1Determinant: det(A) = ad − bc for [[a,b],[c,d]]
- 2Inverse: A⁻¹ = (1/det) × [[d,−b],[−c,a]]
- 3Addition: add corresponding elements
- 4Multiplication: row × column dot products
Worked Examples
ઇનપુટ
A = [[1,2],[3,4]]
પરિણામ
det(A) = −2; A⁻¹ = [[-2,1],[1.5,−0.5]]
Frequently Asked Questions
What does a determinant tell us?
The determinant indicates if a matrix is invertible (det ≠ 0), and represents the scaling factor of a linear transformation's area or volume.
When is a matrix not invertible?
When its determinant is zero. This means the transformation collapses space and information is lost; you cannot reverse it.
How is matrix multiplication different from scalar multiplication?
Matrix multiplication is not commutative: A×B ≠ B×A. Also, it requires specific dimension matching (m×n × n×p = m×p).
ગણતરી માટે તૈયાર છો? મફત Matrix 2×2 કેલ્ક્યુલેટર અજમાવી જુઓ
તેને જાતે અજમાવી જુઓ →