summaryrefslogtreecommitdiff
path: root/26/CH2/EX2.3.33/2_3_33.sce
diff options
context:
space:
mode:
Diffstat (limited to '26/CH2/EX2.3.33/2_3_33.sce')
-rwxr-xr-x26/CH2/EX2.3.33/2_3_33.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/26/CH2/EX2.3.33/2_3_33.sce b/26/CH2/EX2.3.33/2_3_33.sce
new file mode 100755
index 000000000..c09bf4b98
--- /dev/null
+++ b/26/CH2/EX2.3.33/2_3_33.sce
@@ -0,0 +1,10 @@
+disp('matrix A corresponding to transformation T is:')
+A=[-5 9;4 -7];
+disp(A)
+disp('determinant of A is:')
+disp(det(A))
+disp('since det(A) is not equal to zero')
+disp('by IMT, A is invertible')
+disp('hence, the inverse of A exists')
+disp('inverse of A is:')
+disp(inv(A)) \ No newline at end of file