summaryrefslogtreecommitdiff
path: root/1553/CH7/EX7.2/7Ex2.sce
blob: 1ec9c6af3cba9a3a99a2c5de3713a22ed5b40b7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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