summaryrefslogtreecommitdiff
path: root/1553/CH7/EX7.2/7Ex2.sce
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH7/EX7.2/7Ex2.sce')
-rw-r--r--1553/CH7/EX7.2/7Ex2.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/1553/CH7/EX7.2/7Ex2.sce b/1553/CH7/EX7.2/7Ex2.sce
new file mode 100644
index 000000000..1ec9c6af3
--- /dev/null
+++ b/1553/CH7/EX7.2/7Ex2.sce
@@ -0,0 +1,20 @@
+//Chapter 7 Ex2
+clc;
+clear;
+close;
+//let number be x
+//given 7x-15=2x+10
+//thus polynomial is 5x-25=0
+
+mycoeff=[-25 5];
+p=poly(mycoeff,"x","coeff");
+ans=roots(p);
+printf("The number is: %d",ans);
+
+//Alternative logic for same problem
+for x=1:99
+ if((5*x-25)==0)
+ printf("\nAlternate logic: \nThe number is: %d",x);
+ break;
+end
+end