diff options
Diffstat (limited to '26/CH1/EX1.1.19/1_1_19.sce')
-rwxr-xr-x | 26/CH1/EX1.1.19/1_1_19.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/26/CH1/EX1.1.19/1_1_19.sce b/26/CH1/EX1.1.19/1_1_19.sce new file mode 100755 index 000000000..0b7c2e672 --- /dev/null +++ b/26/CH1/EX1.1.19/1_1_19.sce @@ -0,0 +1,8 @@ +disp('the augmented matrix for h=2')
+a=[1 2 4;3 6 8]
+disp(a)
+disp('R2-2*R1')
+a(2,:)=a(2,:)-3*a(1,:)
+disp(a)
+disp('from R3 we get 0=-4')
+disp('hence, if h=2 no solution, else solution exists')
\ No newline at end of file |