Vous êtes sur la page 1sur 3

Problema 1

Aproximación de soluciones de polinomios


Raices del polinomio

Solvex3 + 2 x2 - 3 x - 6 ⩵ 0, x // N
{{x → - 2.}, {x → - 1.73205}, {x → 1.73205}}

Soluciones :
x = -2
x = -1.7320
x = +1.7320

Aproximaciones teorema del valor medio

f[x_] := xx3 + 8 x - 30


tabla = Table[{x, f[x]}, {x, 1, 2, 0.5}];
Grid[Join[{{"x", "f[x]"}}, tabla], Frame → All]

x f[x]
1. 1.[- 21.]
1.5 1.5[- 14.625]
2. 2.[- 6.]

f[x_] := xx3 + 8 x - 30


tabla = Table[{x, f[x]}, {x, - 1.7320, 1.7320, 1.7320}];
Grid[Join[{{"x", "f[x]"}}, tabla], Frame → All]

x f[x]
- 1.732 (- 1.732)[- 49.0517]
0. 0.[- 30.]
1.732 1.732[- 10.9483]

f[x_] := xx3 + 8 x - 30


tabla = Table[{x, f[x]}, {x, - 2, 2, 1}];
Grid[Join[{{"x", "f[x]"}}, tabla], Frame → All]

x f[x]
- 2 (- 2)[- 54]
- 1 (- 1)[- 39]
0 0[- 30]
1 1[- 21]
2 2[- 6]

La raiz que existe entre 1 y 2 es :


x = 1.7320
2 Proyecto Wolfram mario.nb

Gráfica de la función

f[x_] := x3 + 2 x2 - 3 x - 6
Plot[f[x], {x, 1, 2}, PlotStyle → Orange]

1.2 1.4 1.6 1.8 2.0

-2

-4

-6

Al comparar el teorema del valor medio y metodo númerico, se obtiene el mismo resultado.
x = 1.7320
Raices del polinomio

Solvex4 + 2 x3 + x2 - 1 ⩵ 0, x // N
{{x → - 0.5 - 0.866025 ⅈ}, {x → - 0.5 + 0.866025 ⅈ}, {x → - 1.61803}, {x → 0.618034}}

La raiz negativa del polinomio es :


x = -1.61

Triangulos Semejantes

Triangulos semajantes

Triangle[{(H, A, X), (B, K, X)}, C]


Proyecto Wolfram mario.nb 3

1 1 1
 → + 
C H K
Teorema de Pitágoras

FormulaData"TriangleAreaSSS",
1 1
"a" -> Quantity1, " ", "b" -> Quantity1, " ", "c" -> [1, "?"]
a2 - x2 b2 - x2

1 1 1
 → + 
C a2 - x2 b2 - x2

Solvex8 - 22 x6 + 163 x4 - 454 x2 + 385 == 0, x // N


{{x → - 2.91511 + 0.100873 ⅈ}, {x → 2.91511 - 0.100873 ⅈ},
{x → - 2.91511 - 0.100873 ⅈ}, {x → 2.91511 + 0.100873 ⅈ},
{x → - 1.23119}, {x → 1.23119}, {x → - 1.87316}, {x → 1.87316}}

Posibles soluciones reales :


x = 1.23119
x = 1.87316
Aproximaciones teorema del valor medio

N[x_] := xx8 - 22 x6 + 163 x4 - 454 x2 + 385


tabla = Table[{N, N[x]}, {x, 1.2, 1.8, 0.099}];
Grid[Join[{{"x", "f[x]"}}, tabla], Frame → All]

x f[x]
N 1.2
N 1.299
N 1.398
N 1.497
N 1.596
N 1.695
N 1.794

N[x_] := xx8 - 22 x6 + 163 x4 - 454 x2 + 385


tabla = Table[{N, N[x]}, {x, 1.2, 1.8, 1.23119}];
Grid[Join[{{"x", "f[x]"}}, tabla], Frame → All]

x f[x]
N 1.2

N[x_] := xx8 - 22 x6 + 163 x4 - 454 x2 + 385


tabla = Table[{N, N[x]}, {x, 1.2, 1.8, 1.87316}];
Grid[Join[{{"x", "f[x]"}}, tabla], Frame → All]

x f[x]
N 1.2

Al comparar el teorema del valor medio y metodo númerico, se obtienen los mismos resultados.
x = 1.23119
x = 1.87316

Vous aimerez peut-être aussi