Вы находитесь на странице: 1из 6

Practical Practical name Page Remarks

no. no.
1. Matrix Operations. 1-2

2(a). Using For loop write all the integral value as 3


well as floating values of a vector.
2(b). Using For loop write all the square of first 4
five natural number.
2(c). Using For loop find the value of n factorial. 5

2(d). Using For loop find all the value of n factorial. 6

2(e). Find all the value of square root of 16 using if 7


statement .

3(a). Find the sum of series 1+2+3_ _ _ _ _+n. 8

3(b). Find the sum of square of first n natural 9


number.

3(c). Find the sum of cube of first n natural 10


number.

3(d). Find the sum of series: 1/(2^2)+2/(+3^2)+_ _ 11-12


_ _ _ _ _ + n/(n+1)^2.

3(e). Find the sum of series:1+1/2+_ _ _ _ _ +1/n. 13-14

3(f). Find the sum of series : 1+1/(1*2)+1/(2*3)+_ 15-16


_ _ _ _ _ _ _ _ _+1/(n*(n+1)).

3(g). Find the sum of series :2/(1)+3/(2)+_ _ _ _ _ _ 17-18


_ _ _+(n+1)/(n).

3(h). Find the sum of series:1+1/(2)^1/2+1/(3)^1/2 19-20


_ _ _ _ _ _ +1/(n)^1/2.

4. Bisection Method
4(a). F(x)=x^2-5x+6 21-22
Practical Practical name Page Remarks
no. no.
4(b). F(x) =Cos2x-4x 23-24

4(c). F(x)=xsinx-1 25-26

4(d). F(x)=4exp(-x)sinx-1 27-28

4(e). F(x)=x^3-24 29-30

4(f). F(x)=x^4-24 31-32

4(g). F(x)=exp(-x)-x^3 33-34

4(h). F(x)=log(x)-2+x^2 35-36

4(i). F(x)=x^5-2 37-38

5. Regula Falsi Method


5(a). F(x)=x^2-5x+6 39-40

5(b). F(x) =Cos2x-4x 41

5(c). F(x)=xsinx-1 42-43

5(d). F(x)=4exp(-x)sinx-1 44-45

5(e). F(x)=x^3-24 46-47

5(f). F(x)=x^4-24 48-49

5(g). F(x)=exp(-x)-x^3 50-51

5(h). F(x)=log(x)-2+x^2 52-53

5(i). F(x)=x^5-2 54-55

6. Secant Method
6(a). F(x)=x^2+x-7 56

6(b). F(x) =Cos2x-4x 57


Practical Practical name Page Remarks
no. no.
6(c). F(x)=xsinx-1 58

6(d). F(x)=4exp(-x)sinx-1 59

6(e). F(x)=x^3-24 60

6(f). F(x)=x^4-24 61

6(g). F(x)=exp(-x)-x^3 62

6(h). F(x)=log(x)-2+x^2 63

6(i). F(x)=x^5-2 64

7. Newton Raphson
method
7(a). F(x)=x^2+x-7 65

7(b). F(x) =Cos2x-4x 66

7(c). F(x)=xsinx-1 67

7(d). F(x)=4exp(-x)sinx-1 68

7(e). F(x)=x^3-24 69

7(f). F(x)=exp(-x)-x^3 70

7(g). F(x)=log(x)-2+x^2 71

7(h). F(x)=x^4-24 72

7(i). F(x)=x^5-2 73

8. Gauss Jacobi Method


8(a). 10x+2y-z=9 74
20y+20x+2z=-44
10z-2x+3y=22
8(b). 10x-2y-z-t=3
-2x+10y-z-t=15 75
-x-y+10z-2t=27
-x-y-2z+10t=-9
Practical Practical name Page Remarks
no. no.
8(c). 20x+y-2z=17 76
3x+20y-z=-18
2x-3y+20y=25
8(d). 10x+y-z=11.19 77
x+10y+z=-28.08
-x+y+10z=35.61

9. Gauss Seidal Method


9(a). 10x+2y-z=9 78
20y+20x+2z=-44
10z-2x+3y=22
9(b). 10x-2y-z-t=3
-2x+10y-z-t=15 79
-x-y+10z-2t=27
-x-y-2z+10t=-9
9(c). 20x+y-2z=17
3x+20y-z=-18 80
2x-3y+20y=25
9(d). 10x+y-z=11.19 81
x+10y+z=-28.08
-x+y+10z=35.61

10. Upper triangular


matrix
10(a). Convert a matrix A=[1 2 3;1 1 1;2 3 6] 82
into upper triangular matrix.
10(b). Convert a matrix A=[1 2 3 2;1 1 1 1;2 3 6 83
5;1 3 4 5] into upper triangular matrix.

Gauss elimination
method
10(c). 10x-7y+3z+5t=6 84
-6x+8y-z-4t=5
3x+y+4z+11t=2
5x-9y-2z+4t=7
10(d). 4x-y-z=3 85
-2x+6y+z=9
-x+y+7z=-6

Gauss Jordan method


10(e). 4x-y-z=3 86-87
-2x+6y+z=9; -x+y+7z=-6
10(f). 10x-7y+3z+5t=6 88-90
-6x+8y-z-4t=5
3x+y+4z+11t=2
5x-9y-2z+4t=7

11. Newton forward


interpolation
11(a). x:-1 2 3 4 5 6 91
y:-1 4 9 16 25 36 find at x=1.3
11(b). x:-1 2 3 4 5 6 92
y:-1 4 9 16 25 36 find at x=3.4
11(c). x:-1 1.4 1.8 2.2 93
y:-3.49 4.82 5.96 6.5 find at x=1.6
11(d). x:-150 200 250 300 350 400 94-98
y:-13.3 15.04 16.81 18.42 19.90 21.2
find at x=160.
11(e). x:-40 50 60 70 80 90 99-104
y:-184 204 226 250 276 304 find at x=43

Backward
Interpolation Method
11(f). x:-1 2 3 4 5 6 105-106
y:-1 4 9 16 25 36 find at x=5.3
11(g). x:-1 1.4 1.8 2.2 107
y:-3.49 4.82 5.96 6.5 find at x=2.4

12. Lagrange
Interpolation Method
12(a). x:-1 2 3 4 5 6 108
y:-1 4 9 16 25 36 find at x=1.3
12(b). x:-5 7 11 13 17 109
y:-150 392 1452 2366 5202 find at x=9
12(c). x:-5 6 9 11 110
y:-12 13 14 16 find at x=10

13. Trapezoidal Rule


13(a). F(x)=x^2 111

13(b). F(x)=1/(1+x^2) 112

Simpson’s 1/3rd
method
13(c). F(x)=x^2 113
Practical Practical name Page Remarks
no. no.
13(d). F(x)=1/(1+x^2) 114

Simpson’s 3/8th
method
13(e). F(x)=x^2 115

13(f). F(x)=1/(1+x^2) 116

Вам также может понравиться