1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
defon
3 years ago
11

) Evaluating a polynomial limit analytically You should have learned by now the process for finding the derivative of a polynomi

al (as another polynomial). Write a program that will read in from the user a cubic polynomial f(x) (as a set of 4 coefficients), and use this to compute the derivative polynomial (i.e. compute the three coefficients of the derivative f’(x)). Then, read in a value for x from a user, and evaluate the derivative polynomial at that x. Print out that value. b) Evaluating a polynomial derivative numerically
Mathematics
1 answer:
wolverine [178]3 years ago
8 0

Answer:

This code or is program to find a given value of derivative of  a polynomial.

Step-by-step explanation:

We know already how to apply or make the procedures mathematically talking so this short program will eventually help you how to find logic.

// libraries

#include <stdio.h>

#include <conio.h>

//use to control floating elements

float poly(float a[], int, float);

//main

int main()

{

// Enter the degree of polynomial equation

float x, a[10], y1;

int deg, i;

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

scanf("%d", &deg);

printf("Ehter the value of x for which the equation is to be evaluated: ");

// Enter the coefficient of x to the power

scanf("%f", &x);

for(i=0; i<=deg; i++)

{

 printf("Enter the coefficient of x to the power %d: ",i);

 scanf("%f",&a[i]);

}

// The value of polynomial equation for the value of x

y1 = poly(a, deg, x);

 

printf("The value of polynomial equation for the value of x = %.2f is: %.2f",x,y1);

 

return 0;

}

/* function for finding the value of polynomial at some value of x */

float poly(float a[], int deg, float x)

{

float p;

int i;

 

p = a[deg];

 

for(i=deg;i>=1;i--)

{

 p = (a[i-1] + x*p);

}

 

return p;

}

You might be interested in
Yolanda finished 3/4of 10 1/2mile race how many mile sdid she complete
Mila [183]

Answer:

She completed 7.5 3/8 miles of the race.

Step-by-step explanation:

This can be solved with multiplication.

10 * 3/4 = 7.5

1/2 * 3/4 = 1 * 3/2 * 4 = 3/8

7 0
3 years ago
(W+4)(3w-2) please solveeed
Shkiper50 [21]

Step-by-step explanation:

{:}\longrightarrow\sf (w+4)(3w-2)

{:}\longrightarrow\sf w(3w-2)+4 (3w-2)

{:}\longrightarrow\sf 3w^2-2w+12w-8

{:}\longrightarrow\sf 3w^2+10w-8

7 0
3 years ago
Read 2 more answers
Find the x and y intercepts
UNO [17]

Answer:

2x

Step-by-step explanation:

solve it

5 0
3 years ago
What is the length of the diagonal of the rectangular solid shown? please help!!!!
Olin [163]

Answer:

D. diagonal = 20.10 cm

Step-by-step explanation:

Find the bottom diagonal using the length and width.

diagonal² = 8² + 12²

diagonal = √64+144

diagonal = √208

diagonal = 4√13

---------------------------------------------------------------------------------------------------------

Find diagonal of the rectangular solid:

diagonal² = (4√13)² + 14²

diagonal² = 208 + 196

diagonal = √404

diagonal = 20.10 cm

7 0
2 years ago
Which inequality is true when the value of R is 18? I'ma shower the answers i can choose in the picture ​
musickatia [10]

Answer:

See below:

Step-by-step explanation:

Hello! We can check to see if the inequality is true by replacing r with 18 as we have been told to find them in which 18 as r makes the equation true.

So our equations to test for are:

-r-3>-6\\-r+3

We can input 18 as r and then we see the following are correct:

1. No, as a -21 is not greater than -6

2. Yes, as -15 is less than 6.

3. No, as 21 is not greater than 6

4. No, as -15 is not greater than 6.

Cheers!

7 0
3 years ago
Other questions:
  • the outer dimensions of a picture frame are 25 inches by 20 inches. If the area inside the picture frame is 266 square inches, w
    9·1 answer
  • (9x) (4x^3) (2x^4y) =
    13·1 answer
  • A cube shaped packing box can hold 729 cubic inches of packing material. Solve 729= s ^3 to find the length of one side of the b
    11·1 answer
  • Solve each system of equations by substitution <br> X + 3y = 6<br> -x + y = -7
    5·1 answer
  • What is equivalent to<br> 22c+33d
    9·1 answer
  • Which statement is true for the values of Pand Q on this number line? + Q + -2 1 -4 -3 0 1 A 응 4 B. PxQ5 C P+Q&gt; -4 D P - Qo​
    6·1 answer
  • (3 + i) - (2-21)<br> Simplify the expression
    5·1 answer
  • A supermarket sells various brands of peanut butter.
    10·1 answer
  • The function f(x) is given by the set of ordered pairs.
    11·1 answer
  • Newton's Law of Cooling states that the rate of change of the temperature of an object, T, is proportional to the difference of
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!