blob: f0d823d93bb64118ce9f9d1ca2060345e47fb2aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//Chapter 7 Ex4
clc;
clear;
close;
//let number be x
//given (x/3)-(184-x)/7=8
//thus polynomial is: 10x=720
mycoeff=[-720 10];
p=poly(mycoeff,"x","coeff");
ans=roots(p);
printf("The smaller number is: %d",ans);
//Alternative logic for same problem
for x=1:99
if((10*x-720)==0)
printf("\n Alternate logic: \n The smaller number is: %d",x);
break;
end
end
|