Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Below is the code that you can modify: #include double evaluate(double p[], double x, int size) { double total = 0; int i = 0;

image text in transcribedBelow is the code that you can modify:

#include

double evaluate(double p[], double x, int size) {

double total = 0;

int i = 0;

double exp = 1;

while(i

total += p[i]*exp;

exp *= x;

i++;

}

return total;

}

int main() {

double arr[18];

int size, i, n;

printf("Enter degree of the polynomial: ");

scanf("%d", &n);

i = 0;

printf("Enter polynomial: ");

while(i

scanf("%lf", arr+i);

i++;

}

size = i;

printf("polynomial is %lf when x = 1 ", evaluate(arr, 1, size));

printf("polynomial is %lf when x = 3 ", evaluate(arr, 3, size));

printf("polynomial is %lf when x = -5 ", evaluate(arr, -5, size));

return 0;

}

Modify your program in 1 above (or write a new C program) to accept three polynomials as in problem 2. Now compute the polynomial P P, +P:+pg. Note that P(x)=-Py (Pi). Submit Similarly, (x) =

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intelligent Information And Database Systems Asian Conference Aciids 2012 Kaohsiung Taiwan March 2012 Proceedings Part 2 Lnai 7197

Authors: Jeng-Shyang Pan ,Shyi-Ming Chen ,Ngoc-Thanh Nguyen

2012th Edition

3642284892, 978-3642284892

More Books

Students also viewed these Databases questions

Question

Do women and men define sexual harassment differently?

Answered: 1 week ago