Está en la página 1de 24

Objetivo General

Encontrar la relación funcional entre la x vs t y v vs t a partir de esas dos


relaciones encontrar la a+-ea.
Marco Teórico
Las ecuaciones de posición y velocidad para el MUV son:
1.-
X=xo + vo*t+1/2ª*t^2
2.-
V=vo+a*t
Donde xo es la posición inicial, vo la velocidad inicial y a la aceleración
del movimiento:
a= d^2 * x/d*t^2=dv/dt= constante
si el objeto parte del reposo y del origen (xo=0 y vo=0 )entonces la
ecuación 1 y 2 se deduce
x=1/2-a-t^2
v=a*t
Materiales

• El Hombre Movil
(https://phet.colorado.edu/sims/cheerpj/moving-
man/latest/moving-man.html?simulation=moving-
man&locale=es)

• Programa de Matlab

• Laptop

Procedimiento experimental (MUV)


1) Utilizar el simulador (El hombre movil)
2) Variar la velocidad
3) Poner la opción de GRAB
4) Iniciar con el simulador
5) Anotar los datos de Posicion vs Tiempo en cada tramo
6) Anotar con dos cifras cada dato
7) En este caso son 120 datos
DATOS DE LA POSICION EN FUNCION AL TIEMPO

Nro Posición Tiempo


1. 0.004 0.0
2. 0.017 0.1
3. 0.039 0.1
4. 0.069 0.2
5. 0.11 0.2
6. 0.16 0.3
7. 0.21 0.3
8. 0.28 0.3
9. 0.35 0.4
10. 0.43 0.4
11. 0.53 0.5
12. 0.63 0.5
13. 0.74 0.5
14. 0.85 0.6
15. 0.98 0.6
16. 1.1 0.7
17. 1.3 0.7
18. 1.4 0.8
19. 1.6 0.8
20. 1.7 0.8
21. 1.9 0.9
22. 2.1 0.9
23. 2.2 1
24. 2.5 1
25. 2.7 1
26. 2.9 1.1
27. 3.1 1.1
28. 3.4 1.2
29. 3.7 1.2
30. 3.9 1.3
31. 4.1 1.3
32. 4.4 1.3
33. 4.7 1.4
34. 5 1.4
35. 5.3 1.5
36. 5.6 1.5
37. 5.9 1.5
38. 6.3 1.6
39. 6.6 1.6
40. 6.9 1.7
41. 7.3 1.7
42. 7.6 1.8
43. 8 1.8
44. 8.4 1.8
45. 8.8 1.9
46. 9.2 1.9
47. 9.6 2
48. 10 2

CODIGO DE MATLAB

DATOS EN X

>> x1=[0.0 0.1 0.1 0.2 0.2 0.3 0.3 0.3 0.4 0.4 0.5 0.5 0.5 0.6 0.6 0.7 0.7 0.8 0.8 0.8 0.9 0.9 1 1 1
1.1 1.1 1.2 1.2 1.3 1.3 1.3 1.4 1.4 1.5 1.5 1.5 1.6 1.6 1.7 1.7 1.8 1.8 1.8 1.9 1.9 2 2];

DATOS EN Y

>> y1=[0.004 0.017 0.039 0.069 0.11 0.16 0.21 0.28 0.35 0.43 0.53 0.63 0.74 0.85 0.98 1.1 1.3
1.4 1.6 1.7 1.9 2.1 2.2 2.5 2.7 2.9 3.1 3.4 3.7 3.9 4.2 4.4 4.7 5 5.3 5.6 5.9 6.3 6.6 6.9 7.3 7.6 8
8.4 8.8 9.2 9.6 10];

NUMERO DE DATOS EN Y

>> n=length(y1)

n=

48

NUMERO DE DATOS EN X

>> n=length(x1)

n=

48
APLICAMOS LOGARITMO PARA LINIALIZAR PORQUE ES UNA CURVA

LOGARITMO PARA LINIALIZAR

>> x=log10(x1)

x=

Columns 1 through 5

-Inf -1.0000 -1.0000 -0.6990 -0.6990

Columns 6 through 10

-0.5229 -0.5229 -0.5229 -0.3979 -0.3979

Columns 11 through 15

-0.3010 -0.3010 -0.3010 -0.2218 -0.2218


Columns 16 through 20

-0.1549 -0.1549 -0.0969 -0.0969 -0.0969

Columns 21 through 25

-0.0458 -0.0458 0 0 0

Columns 26 through 30

0.0414 0.0414 0.0792 0.0792 0.1139

Columns 31 through 35

0.1139 0.1139 0.1461 0.1461 0.1761

Columns 36 through 40

0.1761 0.1761 0.2041 0.2041 0.2304

Columns 41 through 45

0.2304 0.2553 0.2553 0.2553 0.2788

Columns 46 through 48

0.2788 0.3010 0.3010

LOGARITMO EN Y

>> y=log10(y1)
y=

Columns 1 through 5

-2.3979 -1.7696 -1.4089 -1.1612 -0.9586

Columns 6 through 10

-0.7959 -0.6778 -0.5528 -0.4559 -0.3665

Columns 11 through 15

-0.2757 -0.2007 -0.1308 -0.0706 -0.0088

Columns 16 through 20

0.0414 0.1139 0.1461 0.2041 0.2304

Columns 21 through 25

0.2788 0.3222 0.3424 0.3979 0.4314

Columns 26 through 30

0.4624 0.4914 0.5315 0.5682 0.5911

Columns 31 through 35

0.6232 0.6435 0.6721 0.6990 0.7243

Columns 36 through 40
0.7482 0.7709 0.7993 0.8195 0.8388

Columns 41 through 45

0.8633 0.8808 0.9031 0.9243 0.9445

Columns 46 through 48

0.9638 0.9823 1.0000

SUMATORIA DE X

>> sx=sum(x)

sx =

-3.6033

SUMATORIA DE Y

>> sy=sum(y)

sy =

8.7224

SUMATORIA DE X^2

>> sx2=sum(x.*x)

sx2 =

5.4770

MULTIPLICACION DE X y Y

>> sxy=sum(x.*y)
sxy =

9.6159

VALOR DE A

>> A=((sy*sx2)-(sxy*sx))/((n*sx2)-((sx)^2))

A=

0.3298

VALOR DE B

>> B=((n*sxy)-(sx*sy))/((n*sx2)-((sx)^2))

B=

1.9727

Y prima

>> y1=A+(B*x)

y1 =

Columns 1 through 5

0.3298 -1.6429 -1.6429 -1.0490 -1.0490

Columns 6 through 10

-0.7017 -0.7017 -0.7017 -0.4552 -0.4552

Columns 11 through 15

-0.2640 -0.2640 -0.2640 -0.1078 -0.1078


Columns 16 through 20

0.0242 0.0242 0.1386 0.1386 0.1386

Columns 21 through 25

0.2395 0.2395 0.3298 0.3298 0.3298

Columns 26 through 30

0.4115 0.4115 0.4860 0.4860 0.5546

Columns 31 through 35

0.5546 0.5546 0.6181 0.6181 0.6772

Columns 36 through 40

0.6772 0.6772 0.7325 0.7325 0.7844

Columns 41 through 45

0.7844 0.8334 0.8334 0.8334 0.8797

Columns 46 through 48

0.8797 0.9236 0.9236

DISCREPANCIA

>> d=y-y1
d=

Columns 1 through 5

-2.7277 -0.1267 0.2339 -0.1121 0.0904

Columns 6 through 10

-0.0942 0.0239 0.1488 -0.0007 0.0887

Columns 11 through 15

-0.0117 0.0634 0.1333 0.0372 0.0991

Columns 16 through 20

0.0172 0.0897 0.0075 0.0655 0.0918

Columns 21 through 25

0.0392 0.0827 0.0126 0.0681 0.1016

Columns 26 through 30

0.0509 0.0799 0.0455 0.0822 0.0365

Columns 31 through 35

0.0687 0.0889 0.0540 0.0809 0.0471

Columns 36 through 40
0.0710 0.0937 0.0669 0.0871 0.0545

Columns 41 through 45

0.0789 0.0474 0.0697 0.0909 0.0648

Columns 46 through 48

0.0841 0.0586 0.0764

VALOR DE DELTA

>> delta=(n*sx2)-(sx)^2

delta =

249.9128

SUMATORIA DE DISCREPANCIA CUADRADO

>> sd2=sum(d.*d)

sd2 =

7.7637

SIGMA CUADRADO

>> sig2=sd2/(n-2)

sig2 =

0.1688

ERROR DE A

>> sigA=sqrt((sig2*sx2)/delta)
sigA =

0.0608

ERROR DE B

>> sigB=sqrt((sig2*n)/delta)

sigB =

0.1800

ECUACION DE LA RECTA

y = p1*x + p2

Coefficients:

p1 = 1.9727

p2 = 0.3298

Norm of residuals =

2.7863

ECUACION

A=[0.3 +-0.06]=20
B=[1.9+- 0.2] =10
Y= 0.004 +0.3X
CAPTURA DEL SIMULADOR EN USO

GRAFICA EN CURVA
GRAFICA EN RECTA USANDO EL METODO DE LOGARITMOS

RELACION FUNCIONAL

DE MUV

V=vo+a*t

Y= 0.004 +0.3
V = 0.0012
Error de la aceleración
A= ½ a
A = 0.002

Remplazamos como ecuación


[2.2+-0.002][m/s2]=0.0009%
DATOS DE LA VELOCIADAD EN FUNCION AL TIEMPO

1) Tiempo Velocidad
2) 0.0 0.21
3) 0.1 0.42
4) 0.1 0.63
5) 0.2 0.83
6) 0.2 1
7) 0.3 1.2
8) 0.3 1.4
9) 0.3 1.7
10) 0.4 1.9
11) 0.4 2.1
12) 0.5 2.3
13) 0.5 2.5
14) 0.5 2.7
15) 0.6 2.9
16) 0.6 3.1
17) 0.7 3.3
18) 0.7 3.5
19) 0.8 3.8
20) 0.8 3.9
21) 0.8 4.1
22) 0.9 4.4
23) 0.9 4.6
24) 1 4.8
25) 1 5
26) 1 5.2
27) 1.1 5.4
28) 1.1 5.6
29) 1.2 5.8
30) 1.2 6
31) 1.3 6.3
32) 1.3 6.5
33) 1.3 6.7
34) 1.4 6.9
35) 1.4 7.1
36) 1.5 7.3
37) 1.5 7.5
38) 1.5 7.7
39) 1.6 7.9
40) 1.6 8.1
41) 1.7 8.3
42) 1.7 8.5
43) 1.8 8.8
44) 1.8 8.9
45) 1.8 9.2
46) 1.9 9.4
47) 1.9 9.6
48) 2 9.8
49) 2 10

CODIGO DE MATLAB
DATOS EN X

>> x=[0.0 0.1 0.1 0.2 0.2 0.3 0.3 0.3 0.4 0.4 0.5 0.5 0.5 0.6 0.6 0.7 0.7 0.8 0.8 0.8 0.9 0.9
1 1 1 1.1 1.1 1.2 1.2 1.3 1.3 1.3 1.4 1.4 1.5 1.5 1.5 1.6 1.6 1.7 1.7 1.8 1.8 1.8 1.9 1.9 2 2];

DATOS EN Y

>> y=[0.21 0.42 0.63 0.83 1 1.2 1.4 1.7 1.9 2.1 2.3 2.5 2.7 2.9 3.1 3.3 3.5 3.8 3.9 4.1 4.4
4.6 4.8 5 5.2 5.4 5.6 5.8 6 6.3 6.5 6.7 6.9 7.1 7.3 7.5 7.7 7.9 8.1 8.3 8.5 8.8 8.9 9.2 9.4 9.6 9.8
10];

NUMERO DE DATOS EN X

>> n=length(x)

n=

48

NUMERO DE DATOS EN Y

>> n=length(y)

n=

48

CODIGO PARA VER, SI ES UNA GRAFICA EN CURVA O RECTA

>> plot(x,y,'o')
SIMATORIA DE X

>> sx=sum(x)

sx =

49.2000

SUMATORIA EN Y

>> sy=sum(y)

sy =

244.7900

SUMATORIA DE X ^2

>> sx2=sum(x.*x)

sx2 =

66.5600

MULTIPLICACION DE X y Y

>> sxy=sum(x.*y)

sxy =

331.2510

VALOR DE A

>> A=((sy*sx2)-(sxy*sx))/((n*sx2)-((sx)^2))

A=

-0.0056

VALOR DE B
>> B=((n*sxy)-(sx*sy))/((n*sx2)-((sx)^2))

B=

4.9809

Y prima

>> y1=A+(B*x)

y1 =

Columns 1 through 5

-0.0056 0.4925 0.4925 0.9906 0.9906

Columns 6 through 10

1.4887 1.4887 1.4887 1.9868 1.9868

Columns 11 through 15

2.4848 2.4848 2.4848 2.9829 2.9829

Columns 16 through 20

3.4810 3.4810 3.9791 3.9791 3.9791

Columns 21 through 25

4.4772 4.4772 4.9753 4.9753 4.9753

Columns 26 through 30
5.4734 5.4734 5.9714 5.9714 6.4695

Columns 31 through 35

6.4695 6.4695 6.9676 6.9676 7.4657

Columns 36 through 40

7.4657 7.4657 7.9638 7.9638 8.4619

Columns 41 through 45

8.4619 8.9600 8.9600 8.9600 9.4580

Columns 46 through 48

9.4580 9.9561 9.9561

VALOR DE DISCREPANCIA

>> d=y-y1

d=

Columns 1 through 5

0.2156 -0.0725 0.1375 -0.1606 0.0094

Columns 6 through 10

-0.2887 -0.0887 0.2113 -0.0868 0.1132


Columns 11 through 15

-0.1848 0.0152 0.2152 -0.0829 0.1171

Columns 16 through 20

-0.1810 0.0190 -0.1791 -0.0791 0.1209

Columns 21 through 25

-0.0772 0.1228 -0.1753 0.0247 0.2247

Columns 26 through 30

-0.0734 0.1266 -0.1714 0.0286 -0.1695

Columns 31 through 35

0.0305 0.2305 -0.0676 0.1324 -0.1657

Columns 36 through 40

0.0343 0.2343 -0.0638 0.1362 -0.1619

Columns 41 through 45

0.0381 -0.1600 -0.0600 0.2400 -0.0580

Columns 46 through 48

0.1420 -0.1561 0.0439


VALOR DE DELTA

>> delta=(n*sx2)-(sx)^2

delta =

774.2400

SUMATORIA DE DELTA^2

>> sd2=sum(d.*d)

sd2 =

0.9699

VALOR DE SIGMA

>> sig2=sd2/(n-2)

sig2 =

0.0211

ERROR DE A

>> sigA=sqrt((sig2*sx2)/delta)

sigA =

0.0426

ERROR DE B

>> sigB=sqrt((sig2*n)/delta)

sigB =

0.0362
ECUACION DE LA RECTA
y = p1*x + p2

Coefficients:

p1 = 4.9809

p2 = -0.0055884

Norm of residuals =

0.98483

EXPRESION DE DATOS

A=[0.005 +-0.04]=0.8
B=[4.9+- 0.03] =0.6
Figura 2.2 Y= 0.02 +0.005X

GRAFICA
RELACION FUNCIONAL
A = constante
X = x0 + vo*t + ½ *a t^2
Es una función Cuadratica
X=1/2 *a*t^2
A= ½*a
Error de a
Aportes
Df/da = ½
Df=0.5……………ES IGUAL AL MISMO DATO DE LA FIGURO 2.2

Aplicamos la Raiz y las sumatorias de aportes


√(0.5)^2
0.5
Ecuación
]2.2+-0.5][m/s^2]=100

También podría gustarte