summaryrefslogtreecommitdiff
path: root/26/CH3/EX3.2.25
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /26/CH3/EX3.2.25
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '26/CH3/EX3.2.25')
-rwxr-xr-x26/CH3/EX3.2.25/3_2_25.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/26/CH3/EX3.2.25/3_2_25.sce b/26/CH3/EX3.2.25/3_2_25.sce
new file mode 100755
index 000000000..ef1cc6356
--- /dev/null
+++ b/26/CH3/EX3.2.25/3_2_25.sce
@@ -0,0 +1,13 @@
+disp('the given vectors are:')
+v1=[7 -4 -6]'
+v2=[-8 5 7]'
+v3=[7 0 -5]'
+disp(v3,'v3=',v2,'v2=',v1,'v1=')
+disp('combining them as a matrix')
+a=[v1 v2 v3]
+disp(a,'A=')
+disp('if det(A) is not equal to zero, then v1 v2 and v3 are linearly independent')
+disp('expanding about third column')
+disp('det(A)=7 X (-28+30) - 5 X (35-32)')
+disp(det(a),'=')
+disp('hence, v1 v2 and v3 are linearly independent') \ No newline at end of file