Solver Find the inverse of a matrix, 2x2
Algebra
->
Test
-> Solver Find the inverse of a matrix, 2x2
Log On
Test Calculators and Practice
Test
Answers archive
Answers
Word Problems
Word
Lessons
Lessons
Source code of 'Find the inverse of a matrix, 2x2'
This Solver (Find the inverse of a matrix, 2x2)
was created by by
Alex.33(110)
:
View Source
,
Show
,
Put on YOUR site
About Alex.33
:
Alex is back.
==section input *[input m0=2] *[input n0=1] *[input p0=1] *[input q0=2] ==section solution *[assign det=($m0*$q0-$n0*$p0)] *[assign m1=$q0/$det] *[assign n1=-$n0/$det] *[assign p1=-$p0/$det] *[assign q1=$m0/$det] $m1 $n1 $p1 $q1 ==section output det m1 n1 p1 q1 ==section check