Question

Write a C program that numerically calculates the second derivative of the function f(t) = sin(H) + 0.3A where the input&rang

0 0
Add a comment Improve this question Transcribed image text
Answer #1

`Hey,

Note: Brother in case of any queries, just comment in box I would be very happy to assist all your queries

#include<stdio.h>
#include<stdlib.h>
#include<math.h>
double fun(double t)
{
return sin(t*t)+0.3*t*t*t;
}
double gfun(double t)
{
return (9.0*t)/5.0+2.0*cos(t*t)-4.0*t*t*sin(t*t);
}
int main()
{
double h=1e-7;
double t;
for(t=0.1;t<5;t=t+0.1)
{
double num=(fun(t+h)-2*fun(t)+fun(t-h))/(h*h);
printf("Second derivative at t=%f, numerically is %f and analytically is %f\n",t,num,gfun(t));
}
return 0;
}

FAcheckimain.exe Second derivative at t-0.1e80e, numerically is 2.179645 and analytically is 2.179500 Second derivative at t-

Kindly revert for any queries

Thanks.

Add a comment
Know the answer?
Add Answer to:
Write a C program that numerically calculates the second derivative of the function f(t) = sin(H)...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • 3. (a) Write a MatLab program that calculates for the function F(x, y) = ln(x + Va,2-y2) The prog...

    3. (a) Write a MatLab program that calculates for the function F(x, y) = ln(x + Va,2-y2) The program should use pretty) to display both the original function and the differentiated result, and also use fprintf() to print a label such as "F(x,y) -" and "dF/dxdy - " in front of both the function and the derivative. Then have your program also print out the derivative again after it uses simplify() on the result (b) Find the Taylor expansion of...

  • My code for calculating the first derivative is the second image Compute second derivative O solutions...

    My code for calculating the first derivative is the second image Compute second derivative O solutions submitted (max: 10) You are provided with a set of data for the position of an object over time. The data is sampled at evenly spaced time intervals. Your task is to find a second order accurate approximation for the acceleration at each point in time. Write a Matlab function that takes in a vector of positions x, the time interval between each sampled...

  • 4. (a) A function f has first derivative f (r) - and second derivative f"(z) It is also known that the function f h...

    4. (a) A function f has first derivative f (r) - and second derivative f"(z) It is also known that the function f has r-intercept at (-3,0), and a y-intercept at (0,0) (i) Find all critical points, and use them to identify the intervals over which you will examine the behaviour of the first derivative (ii) Use the f'(x), and the First Derivative Test to classify each critical point. (iii) Use the second derivative to examine the concavity around critical...

  • )and second derivative 4. (a) A function f has first derivative f'(x) f(E) It is also known that the function f has...

    )and second derivative 4. (a) A function f has first derivative f'(x) f(E) It is also known that the function f has r-intercept at (-3,0), and a y-intercept at (0, Q) (i) Find all critical points, and use them to identify the intervals over which you will examine the behaviour of the first derivative [3 marks] (ii) Use the f(x), and the First Derivative Test to classify each critical point.[3 marks] (ii) Use the second derivative to examine the concavity...

  • 4. (a) A function f has first derivative f') and second derivative It is also known that the function f has r-i...

    4. (a) A function f has first derivative f') and second derivative It is also known that the function f has r-intercept at (-3,0) and a y-intercept at (0,0) 0) Find all critical points, and use them to identify the intervals over which you will examine the behaviour of the first derivative. (ii) Use the f'(x), and the First Derivative Test to classify each critical point. (ii) Use the second derivative to examine the concavity around critical points that are...

  • python the polynomial equation is Ax^3+Bx^2+Cx+D b) Evaluating a polynomial derivative numerically For a function f(x),...

    python the polynomial equation is Ax^3+Bx^2+Cx+D b) Evaluating a polynomial derivative numerically For a function f(x), the derivative of the function at a value x can be found by evaluating f(x+2)-(*) and finding the limit as a gets closer and closer to 0. Using the same polynomial as the user entered in part (a), and for the same value of x as entered in part (a), compute the limit numerically. That is, start with an estimate by evaluating** 72 using...

  • 4. (a) A function f has first derivative f' (x) - and second derivative f"(x) It is also known that the functio...

    4. (a) A function f has first derivative f' (x) - and second derivative f"(x) It is also known that the function f has r-intercept at (-3,0), and a y-intercept at (0,0) (i) Find all critical points, and use them to identify the intervals over which you will examine the behaviour of the first derivative. 3 marks] (ii) Use the f'(x), and the First Derivative Test to classify each critical point. 3 marks (iii) Use the second derivative to examine...

  • 4. (a) A function f has first derivative f'(x) and second derivative 2 f" (x) It is also known that the functio...

    4. (a) A function f has first derivative f'(x) and second derivative 2 f" (x) It is also known that the function f has r-intercept at (-3,0), and a y-intercept at (0,0) (i) Find all critical points, and use them to identify the intervals over which you will examine the behaviour of the first derivative. 3 marks] (ii) Use the f(x), and the First Derivative Test to classify each critical point.[3 marks] (iii) Use the second derivative to examine the...

  • 4. (a) A function f has first derivative f'(r) and second derivative It is also known that the function f has r-int...

    4. (a) A function f has first derivative f'(r) and second derivative It is also known that the function f has r-intercept at (-3,0), and a y-intercept at (0, 0) i) Find all critical points, and use them to identify the intervals over which you will examine the behaviour of the first derivative 3 marks (İİ) Úse the f,(x), and the First Derivative Test to classify each critical point. [3 marks] Iİİ) Úse the second derivative to examine the concavity...

  • Write a program in C++. You need everything everythihng given You will create a function that...

    Write a program in C++. You need everything everythihng given You will create a function that validates input. It should accept only non-negative integers. If the input is incorrect the function should throw an exception. The exception will not be caught in the function. You will create a function that reads in 2 integer values. One is a number that will be raised to the power of the second. So if 5 and 6 are entered the result would be...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT