summaryrefslogtreecommitdiff
path: root/1322/CH14/EX14.18
diff options
context:
space:
mode:
Diffstat (limited to '1322/CH14/EX14.18')
-rwxr-xr-x1322/CH14/EX14.18/108ex1.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1322/CH14/EX14.18/108ex1.sce b/1322/CH14/EX14.18/108ex1.sce
new file mode 100755
index 000000000..da370ccc4
--- /dev/null
+++ b/1322/CH14/EX14.18/108ex1.sce
@@ -0,0 +1,12 @@
+
+//100*x^2-1
+clear;
+clc;
+close;
+x=poly(0,'x');
+p=100*x^2-1;
+factors(p);
+ans(1)=10*ans(1);
+ans(2)=10*ans(2);
+disp(ans(1),ans(2),"the factors of 100*x^2-1 are")
+