You are on page 1of 1

## Program for the power equation ##

n=input('the value of n=');


for(i=1:n);
ar2(i)=input('\n enter the value of x=');
ar1(i)=input('\n enter the value of y=');
Y(i)=log10(ar1(i));
end
sum0=0;
sum1=0;
sum2=0;
sum3=0;
for(i=1:n);
sum0=sum0+ ar2(i);
sum1=sum1+ Y(i);
sum2=sum2+ ar2(i)*Y(i);
sum3=sum3+ ar2(i)*ar2(i);
end
ds=sum0*sum0-n*sum3;
da=sum1*sum0-n*sum2;
db=sum0*sum2-sum1*sum3;
a1=da/ds;
b1=db/ds;
fprintf('\n%f%f',a1,b1);
a=10^a1;
b=10^b1;
fprintf('\ny=%f*%f^x',a,b);

## Output##
the value of n=4

enter the value of x=1

enter the value of y=4

enter the value of x=2

enter the value of y=11

enter the value of x=3

enter the value of y=35

enter the value of x=4

enter the value of y=100

0.4696500.122756
y=2.948829*1.326650^x>>

You might also like