β β β β
Q1) β Write a C program to calculate the Mean, Median and Mean Deviation of a simple distribution.
-
See the Output π₯
-
See the Output π₯
Q3) β Write a C program to implement the Least Square Approximation for fitting a Straight line y = mx+c, where "m" is the slope and "c" is the intercept on the y-axis for data points:
-
See the Output π₯
Q4) β Write a C program to find the real root of the equation by using the Method of Successive Approximation.
-
See the Output π₯
-
See the Output π₯
Q6) β Write a C program to find a real root of the equation correct to 3 decimal places by using the Newton-Raphson Method.
-
See the Output π₯
2x1 + 4x2 + 2x3 = 15
2x1 + x2 + 2x3 = -54
x1 + x2 - 2x3 = 0
-
See the Output π₯
-
See the Output π₯
Q9) β Write a C program to interpolate a function using Newton's Divided Difference Formula. Use it to find the value of f(8). Given: x: 4 5 7 10 11 12
f(x): 48 100 294 900 1210 2028
f(x): 48 100 294 900 1210 2028
-
See the Output π₯
Q10) β Write a C program to interpolate using Newton's Forward Interpolation Method. Use it to find the value of y when x = 1.05. Given: x: 1.0 1.1 1.2 1.3 1.4 1.5
f(x): 0.24197 0.21785 0.19419 0.17137 0.14973 0.12952
f(x): 0.24197 0.21785 0.19419 0.17137 0.14973 0.12952
-
See the Output π₯
Q11) β Write a C program to interpolate using Newton's Backward Interpolation Method. Use it to find the value of y when x = 0.75. Given: x: 0.0 0.2 0.4 0.6 0.8 1.0
f(x): 1.0 0.961538 0.833333 0.555556 0.3125 0.2
f(x): 1.0 0.961538 0.833333 0.555556 0.3125 0.2
-
See the Output π₯
Q12) β Write a C program to interpolate using Lagrange's Interpolation Method. Use it to find the value of y when x = 6. Given: x: 3 7 9 10
f(x): 168 120 72 63
f(x): 168 120 72 63
-
See the Output π₯
-
See the Output π₯
Q14) β Write a C program for integrating Simpson's One-Third Rule when the function values are given as: x: 0.8 0.9 1.0 1.1 1.2
f(x): 0.71736 0.78333 0.84147 0.92314 0.96356
f(x): 0.71736 0.78333 0.84147 0.92314 0.96356
-
See the Output π₯
-
See the Output π₯
-
See the Output π₯
Q17) β Write a C program for solving the differential equation where y(0)=1. Find the values of y(0, 1) and y(0, 2) by using the Taylor Series Method.
-
See the Output π₯
Q18) β Write a C program for solving the differential equation where y(0)=1. Find y(0, 2) when h = 0.01 by Euler's Method.
-
See the Output π₯
Q19) β Write a C program for solving the differential equation where y(0)=1. Find y(0.02) when h(0.01) = 1 by Modified Euler's Method.
-
See the Output π₯
Q20) β Write a C program to approximate y when x = 0.1, 0.2, 0.3 and h = 0.1 using Runge-Kutta Method. Given x = 0 when y = 1 and
-
See the Output π₯
- Stuck at any question?
- Confusions regarding any solution provided?
- Want to discuss something regarding above topics?
- Want to connect with other students?
β β β β