close
Warning:
Can't synchronize with repository "(default)" (/var/svn/mms does not appear to be a Subversion repository.). Look in the Trac log for more information.
- Timestamp:
-
Sep 17, 2010, 5:01:34 PM (14 years ago)
- Author:
-
Pedro Gea
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v1
|
v2
|
|
27 | 27 | }}} |
28 | 28 | y la matriz a derivar. |
| 29 | |
| 30 | === Operaciones con varibles aleatorias normalmente distribuidas === |
| 31 | |
| 32 | En algunas ecuaciones y cálculos se han utilizado las siguientes relaciones: |
| 33 | {{{ |
| 34 | fNormal(mu, sigma, x+b) == fNormal(mu-b, sigma, x) |
| 35 | fNormal(mu, sigma, -x) == fNormal(-mu, sigma, x) |
| 36 | fNormal(mu, sigma, a*x) == fNormal(mu/a, sigma/a, x)/a ; con a>0 |
| 37 | }}} |
| 38 | donde: |
| 39 | {{{ |
| 40 | fNormal(mu, sigma, x) := 1/(Sqrt(2*Pi)*Sigma) * Exp(-(1/2)*((x-mu)/sigma)**2) |
| 41 | }}} |
| 42 | y también el siguiente resultado que nos permite multiplicar dos funciones de densidad normales: |
| 43 | {{{ |
| 44 | fNormal(muA, sigmaA, x) * fNormal(muB, sigmaB, x) == |
| 45 | fNormal((muA*sigmaB**2 + muB*sigmaA**2)/sigmaAB**2, sigmaA*sigmaB/sigmaAB, x) * fNormal(muA-muB, sigmaAB, 0) |
| 46 | }}} |
| 47 | donde: |
| 48 | {{{ |
| 49 | sigmaAB = Sqrt(sigmaA**2 + sigmaB**2) |
| 50 | }}} |