summaryrefslogtreecommitdiff
path: root/3293/CH2/EX2.9/Ex2_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3293/CH2/EX2.9/Ex2_9.sce')
-rw-r--r--3293/CH2/EX2.9/Ex2_9.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/3293/CH2/EX2.9/Ex2_9.sce b/3293/CH2/EX2.9/Ex2_9.sce
new file mode 100644
index 000000000..ebb7e2a11
--- /dev/null
+++ b/3293/CH2/EX2.9/Ex2_9.sce
@@ -0,0 +1,23 @@
+//page 38
+//Example 2.9
+clear;
+clc;
+close;
+disp('W1 = ');
+disp('x y');
+disp('z 0');
+disp('where, x,y,z are scalars in F');
+disp('W2 = ');
+disp('x 0');
+disp('0 y');
+disp('where, x,y are scalars in F');
+disp('Now, V = W1 + W2');
+disp('This is because,');
+disp('a b');
+disp('c d = ');
+disp('a b + 0 0');
+disp('c 0 0 d');
+disp('And, W1 (intersect) W2) = ');
+disp('x 0');
+disp('0 0');
+//end