diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3293/CH4/EX4.10 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3293/CH4/EX4.10')
-rwxr-xr-x | 3293/CH4/EX4.10/Ex4_10.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3293/CH4/EX4.10/Ex4_10.sce b/3293/CH4/EX4.10/Ex4_10.sce new file mode 100755 index 000000000..da3093407 --- /dev/null +++ b/3293/CH4/EX4.10/Ex4_10.sce @@ -0,0 +1,21 @@ +//page 135
+//Example 4.10
+clc;
+clear;
+close;
+x = poly(0,"x");
+P = x^2 + 1;
+disp(P,'P = ');
+disp('P is reducible over complex numbers as: ');
+disp('=',P);
+disp('(x-i)(x+i)');
+disp('Whereas, P is irreducible over real numbers as:.');
+disp('=',P);
+disp('(ax + b)(a''x + b'')');
+disp('For, a,a'',b,b'' to be in R,');
+disp('aa'' = 1');
+disp('ab'' + ba'' = 0');
+disp('bb'' = 1');
+disp('=> a^2 + b^2 = 0');
+disp('=> a = b = 0');
+//end
|