1.
Solve following by Guass Elimination Method
𝒙+𝒚+𝒛=3
7𝒙 + 𝒚 + z = 9
𝟐𝒙 - y + 3𝒛 = 4
𝑑𝑦
2. Solve 𝑑𝑥 = x+y where
initial condition is 𝒚(𝟎) = 1, h=0.2. Find 𝒚(0.8) using Euler’s method
3. Using Taylor’s Series method find 𝒚(𝟎. 𝟏) correct upto 4 decimal places
𝑑𝑦
from the differential equation 𝑑𝑥 - 1 = XY, and Y(0)=1
4. Write algorithm of Regula falsi method
5. Find a root of the equation 𝑥𝑒 𝑥 =1 using Ramanujan’s method
6. Convert 250.75 into floating-point 32-bit representation
𝑑𝑦 𝑑2𝑦
7. From the following table of values of 𝒙 & 𝑦 obtain 𝑑𝑥 & 𝑑𝑥 2 𝒇𝒐𝒓 𝒙 = 1.0
X 1.0 1.1 1.2 1.3 1.4 1.5
Y 5.4680 5.6665 5.9264 6.2561 6.6601 7.1488
8. Estimate the missing term
𝒙 0 1 2 3 4 5
𝒇(𝒙) 1 3 11 - 189 491
9. Find the cube root of 24 correct upto 3 decimal places using Newton Raphson
Method.
2 1
10. Evaluate ∫−2 𝑥 2 𝒅𝒙 using simpson’s 3 rd rule take h=1
11. Derive Trapezoidal Rule.
𝑑𝑦
12. Given 𝑑𝑥 = y – x where 𝒚(𝟎) = 𝟐, find 𝒚(𝟎. 𝟏) and 𝒚(𝟎. 𝟐) correct to four
decimal places by using Runge – Kutta second order
13. Given data
𝒙 10 15 20 25 30 35
𝒇(𝒙) 35.4 32.3 29.2 26.0 23.2 20.4
Calculate 𝒇(16) by using Newton – Gregory forward interpolation formula
14. Using Lagrange’s interpolation formula find 𝒇(5) given that
𝒙 0 1 2 3
𝒇(𝒙) 2 3 12 35
15. Solve the following system of equations using Matrix Inversion method
3𝒙 + 𝒚 + 2𝒛 = 3
2𝒙 - 3𝒚 - 𝒛 = -3
𝒙 + 2𝒚 + 𝒛 = 4
16. Fit a straight line of the form 𝒚 = 𝒂𝟎 + 𝒂𝟏𝒙 to the data
X 1 2 3 4 5
Y 0.6 2.4 3.5 4.8 5.7
17. Solve the following system of equations using Gauss Elimination Method
x+y+z=6 , 3x+3y+4z=20 , 2x+y+3z=13
18. Given data
𝑥 1.2 1.3 1.4 1.5
𝑓(𝑥) 1.063 1.091 1.119 1.145
Calculate 𝑓(1.35) by using Newton – Gregory forward interpolation formula
19. Represent 102.9375 into 32 bit representation
𝑑𝑦
20. Using Euler’s method find 𝑦(0.4) from the differential equation 𝑑𝑥 = 𝑥𝑦
and 𝑦(0) = 1 ,h=0.1
𝑑𝑦
21. Solve 𝑑𝑥 = 𝑥 − 𝑦 2 where initial condition is 𝑦(0) = 1. Find the approximate
value of 𝑦 for 𝑥 = 0.1 using Taylor’s method
𝑑𝑦 𝑑2𝑦
22. From the following table of values of 𝑥 & 𝑦 obtain 𝑑𝑥 & 𝑓𝑜𝑟 𝑥 = 0.4
𝑑𝑥 2
X 0.1 0.2 0.3 0.4
Y 1.105 1.221 1.349 1.491
23. Derive Trapezoidal Rule
24. Solve ∫x3dx over [-3,3] consider h=1 by Simpson’s 1/3rd rule .
25. Find the square root of 24 correct upto 2 places of decimal using Newton –
Raphson method
26. Find a root of the equation f(x)=x3-6x2+11x-6=0 using Ramanujan’s method
27. Fit a polynomial of second degree for the points (0,1),(1,6) and (2,17)
𝑑𝑦
28. Given 𝑑𝑥 = 𝑦 − 𝑥 where 𝑦(0) = 2, find 𝑦(0.2) correct to four
decimal places by using Runge – Kutta second order
29. Evaluate cube root of 10 by Bisection method perform 5 iterations
30. Using Lagrange’s interpolation formula find 𝑓(2) given that
𝑥 0 1 3 4
𝑓(𝑥) -12 0 6 12
31. Fit a straight line of the form 𝑦 = 𝑎0 + 𝑎1 𝑥 to the data
𝑥 1 2 3 4 6 8
𝑦 2.4 3.1 3.5 4.2 5.0 6.0
32. Solve the following system of equations using Gauss Jordan Method
𝑥+𝑦+𝑧 = 3
7𝑥 + 𝑦 + 𝑧 = 9
2𝑥 − 3𝑦 + 3𝑧 = 4
33. Solve using matrix inverse method
3x+2y+4z = 7
2x+y+z = 7
x+3y+5z=2
34. Using Euler’s Method find the value of y at x=0.05
given dy/dx = x + y2 with y(0) = 1 taking h=0.01
35. Find the missing term.
X 2 3 4 5 6 7
F(x) 5.99 7.92 9.49 - 12.59 14.07
36. using Taylor method find y(0.1) correct upto 4 decimal places , y(x) satisfies y’ = 1 + xy and
y(0)=1
37. Drive General intergration formula and hence drive trapezoidal rule.
38. Using Ramanujan Method obtain the first seven convergent of the equation x + x3 = 1
39. From the following table of values of x and y obtain dy/dx and d2y/dx2 for x=1.2
X 1.0 1.2 1.4 1.6 1.8 2.0 2.2
Y 2.7138 3.3201 4.0552 4.9530 6.0496 7.3891 9.025
40. Find the Square root of 24 correct upto 2 decimal places using Newton Raphson Method.
41. Convert 102.9375 into floating point 32 bit representation.
42. using Simphson 1/3 rule
1
0ʃ x2 / (1+x3 ) dx ; n=6
43. if y1 = 4, y3 = 12, y4 = 19 and yx =7 find x also find second degree polynomial.
44. Write algoritham of bisection method.
45. fit a straight line for y=ax+b
X 0 1 2 3 4 5
Y 1 2 3 4.5 6 7.5
46. from the table given below estimate number of students who secured marks between 40
and 50
Marks 30-40 40-50 50-60 60-70 70-80
No. of 31 42 51 35 31
students
47. solve by Gauss elimination method
x+2y+z = 4
3x+y+2z =3
2x-3y-z =-3