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
2 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]2 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
Find f'(x) if f(x) = (2/(x^1/3)) + 3 cos x + x*
Molodets [167]

Answer:

i think that this is the answer

5 0
3 years ago
Which expression is equivalent to 200?<br> O 2 /10<br> O 10/2<br> O 10/20<br> O 100/13
creativ13 [48]

Answer:

10/20

Step-by-step explanation:

10 times 20 is 200 which would give you 10/20

hope I did this right

6 0
2 years ago
Given: // CDAB , ∠≅∠ DB and ≅ EDBF . Prove: Δ ABF ≅ Δ CED
SCORPION-xisa [38]

Given: line segment AB // to line segment CD, ∠B ≅∠D and line segment BF ≅ to line segment ED. Prove: Δ ABF ≅ Δ CED.

Follow the matching numbers on the statement versus reason chart.

Statement:

1. line segment AB // to line segment CD.

2. ∠B ≅∠D

3. line segment BF ≅ to line segment ED.

4. ∠A ≅∠C

5. Δ ABF ≅ Δ CED

 

Reason:

1. Given

2. Given

3. Given

4. Alternate interior angles are congruent.

5. Corresponding parts of congruent triangles are congruent.

4 0
3 years ago
The points A, B, and C lie on a line so that AB = 12 cm and BC = 13.5 cm. Find the length of segment AC. Give all possible answe
natita [175]

Answer:

25.5 and 1.5

Step-by-step explanation:

AC = 12 cm

BC = 13.5 cm

12 + 13.5 = 25.5 cm

13.5 - 12 = 1.5 cm

4 0
2 years ago
A train travels 56 kilometers in 4 hours, and then 90 kilometers in 2 hours. what is its average speed?
ankoles [38]
56 + 90 = 146 kilometers
4 + 2 = 6 hours

rate = 146 km / 6 hour
= 24.333 km / hour
6 0
3 years ago
Other questions:
  • I need help with the puzzle plsssss it’s due Wednesday!
    14·2 answers
  • Pam wants to lose some weight. She currently Weighs 225 lbs. if she loses 1.5 lbs per week, how many weeks will it take her to r
    7·1 answer
  • In the united states , 13 out of every 20 cans are recycled what percent of cans are recycled
    13·1 answer
  • What is the prim factorization of 1250
    7·1 answer
  • Write two inequalities to compare 25 and 23
    8·2 answers
  • February 2, the temperature at 11 AM was 5°F. At
    9·1 answer
  • What is the variable expression for 6 less than the difference of 5 and a number? * 3 points 6 - 5 - n 6 - n - 5 (5 - n) -6 6 -
    6·1 answer
  • Approximate, in feet, the circumference of a circle with radius = 6 ft. (Round your answer to one decimal place.)
    14·1 answer
  • Quadrilateral JKLM is graphed with vertices at J(-2,2), K(-1,-5), L(4,0), and M(3,7).
    7·1 answer
  • On a quiz show, Linda won $10 less than three times as much as Charlie. If Linda won $800, how much did Charlie win?
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!