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:
-
Aug 25, 2010, 12:17:48 PM (14 years ago)
- Author:
-
Pedro Gea
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v9
|
v10
|
|
249 | 249 | |
250 | 250 | |
251 | | |
| 251 | == Nota matemática == |
| 252 | |
| 253 | En las ecuaciones y cálculos anteriores se han utilizado las siguientes relaciones: |
| 254 | {{{ |
| 255 | fNormal(mu, sigma, x+b) == fNormal(mu-b, sigma, x) |
| 256 | fNormal(mu, sigma, -x) == fNormal(-mu, sigma, x) |
| 257 | fNormal(mu, sigma, a*x) == fNormal(mu/a, sigma/a, x)/a ; con a>0 |
| 258 | }}} |
| 259 | donde: |
| 260 | {{{ |
| 261 | fNormal(mu, sigma, x) := 1/(Sqrt(2*Pi)*Sigma) * Exp(-(1/2)*((x-mu)/sigma)**2) |
| 262 | }}} |
| 263 | y también el siguiente resultado que nos permite multiplicar dos funciones de densidad normales: |
| 264 | {{{ |
| 265 | fNormal(muA, sigmaA, x) * fNormal(muB, sigmaB, x) == |
| 266 | fNormal((muA*sigmaB**2 + muB*sigmaA**2)/sigmaAB**2, sigmaA*sigmaB/sigmaAB, x) * fNormal(muA-muB, sigmaAB, 0) |
| 267 | }}} |
| 268 | donde: |
| 269 | {{{ |
| 270 | sigmaAB = Sqrt(sigmaA**2 + sigmaB**2) |
| 271 | }}} |