diff options
Diffstat (limited to '1322/CH5/EX5.6.b/47ex5_b.sce')
-rwxr-xr-x | 1322/CH5/EX5.6.b/47ex5_b.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1322/CH5/EX5.6.b/47ex5_b.sce b/1322/CH5/EX5.6.b/47ex5_b.sce new file mode 100755 index 000000000..18f069199 --- /dev/null +++ b/1322/CH5/EX5.6.b/47ex5_b.sce @@ -0,0 +1,9 @@ + +//evaluate 2*(3*n^2+5)-4 by removing brackets
+clear;
+clc;
+close;
+n=poly(0,'n');
+p1=2*(3*n^2+5)-4;//removing braces
+n=7;//given
+val=2*(3*n^2+5)-4
|