0% found this document useful (0 votes)
45 views

Excel Metodos Numericos

The document contains details of numerical methods experiments conducted by a group of students. It includes the names of four students and results from applying the bisection method to find the root of f(x)=x^10-1, as well as applying the Newton-Raphson method to solve the equation f(x)=e^x-3x.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
45 views

Excel Metodos Numericos

The document contains details of numerical methods experiments conducted by a group of students. It includes the names of four students and results from applying the bisection method to find the root of f(x)=x^10-1, as well as applying the Newton-Raphson method to solve the equation f(x)=e^x-3x.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
You are on page 1/ 11

Excel Metodos Numericos

Integrantes

Antonio de Jesús Guerrero Flore


Juan Ramon Rivera Alvarez
Alexis Lemus Ogaz
Villegas Ledesma Bryan Haciel

METODOS NUMERICOS Fecha: 2/18/2021


Numericos

ús Guerrero Flores
vera Alvarez

ma Bryan Haciel
Metodo de biseccion: f(x) = x^10-1

interacion Xa Xb Xr f(Xa) f(Xr) f(Xa)f(Xr) Ea(%)


1 0 1.4 0.7 -1 -0.97175248 0.97175248
2 0.7 1.4 1.05 -0.97175248 0.62889463 -0.61112991 33.3333333
3 0.7 1.05 0.875 -0.97175248 -0.73692442 0.71610813 20
4 0.875 1.05 0.9625 -0.73692442 -0.31764971 0.23408383 9.09090909
5 0.9625 1.05 1.00625 -0.31764971 0.06428743 -0.02042088 4.34782609
6 0.9625 1.00625 0.984375 -0.31764971 -0.14570915 0.04628447 2.22222222
7 0.984375 1.00625 0.9953125 -0.14570915 -0.04589849 0.00668783 1.0989011
8 0.9953125 1.00625 1.00078125 -0.04589849 0.00784002 -0.00035985 0.54644809
9 0.9953125 1.00078125 0.99804688 -0.04589849 -0.01936048 0.00088862 0.2739726
10 0.99804688 1.00078125 0.99941406 -0.01936048 -0.00584395 0.00011314 0.13679891
11 0.99941406 1.00078125 1.00009766 -0.00584395 0.00097699 -5.7095E-06 0.0683527
12 0.99941406 1.00009766 0.99975586 -0.00584395 -0.00243873 1.42518E-05 0.03418803
Et(%) for(x=0; x<=Var1;x++)
30 dgv.Rows[x].Cells[1].Value.ToString() = a
5 dgv.Rows[x].Cells[2].Value.ToString() = b
12.5 a = dgv.Rows[x].Cells[3].Value.ToString()
3.75 b = dgv.Rows[x].Cells[4].Value.ToString()
0.625 c = dgv.Rows[x].Cells[5].Value.ToString()
1.5625 dgv.Rows[x].Cells[6].Value.ToString()
0.46875 dgv.Rows[x].Cells[7].Value.ToString()
0.078125 dgv.Rows[x].Cells[8].Value = 0
0.1953125
0.05859375 a=b+c
0.00976562
0.02441406 dgv.Rows[x].Cells[1].Value.ToString() = a
dgv.Rows[x].Cells[2].Value.ToString() = b
𝑓(𝑥)=𝑒^𝑥−3𝑥
h= 0.1

Iteraciones x f(x)
0 0 1
1 0.1 0.805170918
2 0.2 0.621402758
3 0.3 0.449858808
4 0.4 0.291824698
5 0.5 0.148721271
6 0.6 0.0221188
7 0.7 -0.086247293
8 0.8 -0.174459072
9 0.9 -0.240396889
10 1 -0.281718172
11 1.1 -0.295833976

Se da el cambio de signo en f(x)


Converge Podemos seguir evaluando la ecuación
Diverge No podemos seguir evaluando porque esta mal
𝑥_(𝑖+1)=𝐺(𝑥)=𝑒^𝑥𝑖/3 |𝐺^′ (𝑥)|=|𝑒^
𝑓(𝑥)=𝑒^𝑥−3𝑥

Iteracion |G'(x1)|<1 Xi f(Xi) Error


0 0.60737293 CONVERGE 0.6 0.0221188
1 0.6118676 CONVERGE 0.60737293 0.01348401 0.00863479
2 0.61462394 CONVERGE 0.6118676 0.008269 0.00521501
3 0.61632038 CONVERGE 0.61462394 0.00508933 0.00317966
4 0.61736682 CONVERGE 0.61632038 0.00313932 0.00195001
5 0.6180132 CONVERGE 0.61736682 0.00193913 0.00120019
6 0.61841279 CONVERGE 0.6180132 0.00119879 0.00074033
7 0.61865996 CONVERGE 0.61841279 0.0007415 0.0004573
8 0.61881289 CONVERGE 0.61865996 0.00045879 0.00028271
9 0.61890753 CONVERGE 0.61881289 0.00028393 0.00017486
10 0.61896611 CONVERGE 0.61890753 0.00017573 0.00010819
11 0.61900237 CONVERGE 0.61896611 0.00010878 6.69572E-05
12 0.61902481 CONVERGE 0.61900237 6.7334E-05 4.14423E-05
13 0.61903871 CONVERGE 0.61902481 4.16819E-05 2.56521E-05
14 0.61904731 CONVERGE 0.61903871 2.58029E-05 1.5879E-05
15 0.61905263 CONVERGE 0.61904731 1.59733E-05 9.8296E-06
16 0.61905593 CONVERGE 0.61905263 9.88832E-06 6.08495E-06
17 0.61905797 CONVERGE 0.61905593 6.12143E-06 3.76689E-06
18 0.61905923 CONVERGE 0.61905797 3.78952E-06 2.33191E-06
19 0.61906002 CONVERGE 0.61905923 2.34594E-06 1.44358E-06
20 0.6190605 CONVERGE 0.61906002 1.45228E-06 8.93662E-07
21 0.6190608 CONVERGE 0.6190605 8.99049E-07 5.5323E-07
22 0.61906099 CONVERGE 0.6190608 5.56566E-07 3.42483E-07
23 0.6190611 CONVERGE 0.61906099 3.44548E-07 2.12018E-07
24 0.61906117 CONVERGE 0.6190611 2.13296E-07 1.31252E-07
25 0.61906122 CONVERGE 0.61906117 1.32044E-07 8.12529E-08
26 0.61906124 CONVERGE 0.61906122 8.17431E-08 5.03005E-08
27 0.61906126 CONVERGE 0.61906124 5.0604E-08 3.11391E-08
28 0.61906127 CONVERGE 0.61906126 3.1327E-08 1.9277E-08
29 0.61906128 CONVERGE 0.61906127 1.93933E-08 1.19336E-08
30 0.61906128 CONVERGE 0.61906128 1.20056E-08 7.38766E-09
31 0.61906128 CONVERGE 0.61906128 7.43223E-09 4.57341E-09
32 0.61906128 CONVERGE 0.61906128 4.601E-09 2.83122E-09
33 0.61906129 CONVERGE 0.61906128 2.8483E-09 1.7527E-09
34 0.61906129 CONVERGE 0.61906129 1.76327E-09 1.08503E-09
35 0.61906129 CONVERGE 0.61906129 1.09158E-09 6.717E-10
36 0.61906129 CONVERGE 0.61906129 6.75752E-10 4.15823E-10
37 0.61906129 CONVERGE 0.61906129 4.18332E-10 2.5742E-10
38 0.61906129 CONVERGE 0.61906129 2.58973E-10 1.59359E-10
39 0.61906129 CONVERGE 0.61906129 1.6032E-10 9.86526E-11
40 0.61906129 CONVERGE 0.61906129 9.92479E-11 6.10725E-11
41 0.61906129 CONVERGE 0.61906129 6.14406E-11 3.78073E-11
42 0.61906129 CONVERGE 0.61906129 3.80356E-11 2.34051E-11
43 0.61906129 CONVERGE 0.61906129 2.35463E-11 1.44893E-11
44 0.61906129 CONVERGE 0.61906129 1.45766E-11 8.96971E-12
45 0.61906129 CONVERGE 0.61906129 9.02389E-12 5.55267E-12
46 0.61906129 CONVERGE 0.61906129 5.58642E-12 3.43747E-12
47 0.61906129 CONVERGE 0.61906129 3.45857E-12 2.12785E-12
48 0.61906129 CONVERGE 0.61906129 2.14095E-12 1.31761E-12
49 0.61906129 CONVERGE 0.61906129 1.32538E-12 8.1557E-13
50 0.61906129 CONVERGE 0.61906129 8.20455E-13 5.04929E-13
51 0.61906129 CONVERGE 0.61906129 5.07816E-13 3.12639E-13
52 0.61906129 CONVERGE 0.61906129 3.14415E-13 1.93401E-13
53 0.61906129 CONVERGE 0.61906129 1.94733E-13 1.19682E-13
54 0.61906129 CONVERGE 0.61906129 1.2057E-13 7.41629E-14
55 0.61906129 CONVERGE 0.61906129 7.43849E-14 4.61853E-14
56 0.61906129 CONVERGE 0.61906129 4.59632E-14 2.84217E-14
57 0.61906129 CONVERGE 0.61906129 2.86438E-14 1.73195E-14
58 0.61906129 CONVERGE 0.61906129 1.75415E-14 1.11022E-14
59 0.61906129 CONVERGE 0.61906129 1.08802E-14 6.66134E-15
60 0.61906129 CONVERGE 0.61906129 6.88338E-15 3.9968E-15
61 0.61906129 CONVERGE 0.61906129 0 6.88338E-15
62 0.61906129 CONVERGE 0.61906129 0 0
63 0.61906129 CONVERGE 0.61906129 0 0 Respuesta =
64 0.61906129 CONVERGE 0.61906129 0 0
65 0.61906129 CONVERGE 0.61906129 0 0
66 0.61906129 CONVERGE 0.61906129 0 0
67 0.61906129 CONVERGE 0.61906129 0 0
68 0.61906129 CONVERGE 0.61906129 0 0
69 0.61906129 CONVERGE 0.61906129 0 0
70 0.61906129 CONVERGE 0.61906129 0 0
71 0.61906129 CONVERGE 0.61906129 0 0
72 0.61906129 CONVERGE 0.61906129 0 0
73 0.61906129 CONVERGE 0.61906129 0 0
74 0.61906129 CONVERGE 0.61906129 0 0
75 0.61906129 CONVERGE 0.61906129 0 0
76 0.61906129 CONVERGE 0.61906129 0 0
77 0.61906129 CONVERGE 0.61906129 0 0
78 0.61906129 CONVERGE 0.61906129 0 0
79 0.61906129 CONVERGE 0.61906129 0 0
80 0.61906129 CONVERGE 0.61906129 0 0
81 0.61906129 CONVERGE 0.61906129 0 0
82 0.61906129 CONVERGE 0.61906129 0 0
83 0.61906129 CONVERGE 0.61906129 0 0
84 0.61906129 CONVERGE 0.61906129 0 0
85 0.61906129 CONVERGE 0.61906129 0 0
86 0.61906129 CONVERGE 0.61906129 0 0
87 0.61906129 CONVERGE 0.61906129 0 0
88 0.61906129 CONVERGE 0.61906129 0 0
89 0.61906129 CONVERGE 0.61906129 0 0
90 0.61906129 CONVERGE 0.61906129 0 0
91 0.61906129 CONVERGE 0.61906129 0 0
92 0.61906129 CONVERGE 0.61906129 0 0
93 0.61906129 CONVERGE 0.61906129 0 0
94 0.61906129 CONVERGE 0.61906129 0 0
95 0.61906129 CONVERGE 0.61906129 0 0
96 0.61906129 CONVERGE 0.61906129 0 0
97 0.61906129 CONVERGE 0.61906129 0 0
98 0.61906129 CONVERGE 0.61906129 0 0
99 0.61906129 CONVERGE 0.61906129 0 0
100 0.61906129 CONVERGE 0.61906129 0 0
101 0.61906129 CONVERGE 0.61906129 0 0
|𝐺^′ (𝑥)|=|𝑒^𝑥/3|<1
0.61906129
Metodo de Interpolaridad

T,K Cobre
X0 Y0
100 482
X1 Y
200 413
X y
130 461.3

You might also like