summaryrefslogtreecommitdiff
path: root/1760/CH7/EX7.25/EX7_25.sce
diff options
context:
space:
mode:
Diffstat (limited to '1760/CH7/EX7.25/EX7_25.sce')
-rwxr-xr-x1760/CH7/EX7.25/EX7_25.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/1760/CH7/EX7.25/EX7_25.sce b/1760/CH7/EX7.25/EX7_25.sce
new file mode 100755
index 000000000..63d06d499
--- /dev/null
+++ b/1760/CH7/EX7.25/EX7_25.sce
@@ -0,0 +1,18 @@
+ //EXAMPLE 7_25 PG NO-484-485
+A1=4/3;
+A2=5/3;
+B1=11/3;
+B2=2;
+C1=1/3;
+C2=2;
+D1=5/3;
+D2=3;
+A=A1+A2;
+B=B1+B2;
+C=C1+C2;
+D=D1+D2;
+X=(A*D)-(B*C);
+disp(' X is = '+string(X)+'');
+Z=[A1 B1;C1 D1]*[A2 B2; C2 D2];
+disp(' ABCD MATRIX is = '+string(Z)+'');
+