From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 26/CH3/EX3.2.25/3_2_25.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 26/CH3/EX3.2.25/3_2_25.sce (limited to '26/CH3/EX3.2.25') 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 -- cgit