summaryrefslogtreecommitdiff
path: root/1553/CH9/EX9.13/9Ex13.sce
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH9/EX9.13/9Ex13.sce')
-rw-r--r--1553/CH9/EX9.13/9Ex13.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1553/CH9/EX9.13/9Ex13.sce b/1553/CH9/EX9.13/9Ex13.sce
new file mode 100644
index 000000000..02d818ac7
--- /dev/null
+++ b/1553/CH9/EX9.13/9Ex13.sce
@@ -0,0 +1,10 @@
+//chapter 9 Ex 13
+
+clc;
+clear;
+close;
+
+a=sqrt(2); b=nthroot(3,3);
+v=[a b];
+v=gsort(v,'lc','i');
+mprintf("%.3f > %.3f i.e b>a",v(2),v(1));