Es sei einer gleichmäßigen Verteilung und einer Normalverteilung. Was kann man über X sagen? ? Gibt es eine Distribution dafür?
Ich fand, dass das Verhältnis von zwei Normalen mit dem Mittelwert Null Cauchy ist.
Es sei einer gleichmäßigen Verteilung und einer Normalverteilung. Was kann man über X sagen? ? Gibt es eine Distribution dafür?
Ich fand, dass das Verhältnis von zwei Normalen mit dem Mittelwert Null Cauchy ist.
Antworten:
Sei die Zufallsvariable mit pdf f ( x ) :X.∼ Uniform ( a , b ) f( x )
wo ich (dies verschachtelt den Standardfall Uniform ( 0 , 1 ) ). [Unterschiedliche Ergebnisse werden erhalten, wenn beispielsweise Parameter a < 0 ist, die Vorgehensweise jedoch genau gleich ist. ]]0 < a < b Uniform(0,1) a<0
Weiter sei und W = 1 / Y mit pdf g ( w ) :Y.∼ N.( μ , σ2) W.=1/Y g(w)
Dann suchen wir das PDF des Produkts , sagen wir h ( v ) , das gegeben ist durch:V=X∗W h(v)
wo ich bin mit mathStatica ‚s
TransformProduct
Funktion , um die Nitty-gritties zu automatisieren, und woErf
gibt die Fehlerfunktion: http://reference.wolfram.com/language/ref/Erf.htmlAlles erledigt.
Grundstücke
Hier sind zwei Diagramme des PDF:
Monte-Carlo-Scheck
Hier ist eine kurze Monte-Carlo-Überprüfung des Plot 2-Falls, um sicherzustellen, dass sich keine Fehler eingeschlichen haben:μ=12 σ=1 a=0 b=1
,σ=1,a=0,b=1
Die blaue Linie ist das empirische Monte-Carlo-PDF, und die rote gestrichelte Linie ist das theoretische PDF oben. Sieht gut aus :)h(v)
quelle
Es ist möglich, die Verteilung von aus ersten Prinzipien, wobeiX∼U[0,1]undY∼N(μ,σ2). Betrachten Sie die kumulative Wahrscheinlichkeitsfunktion vonZ:Z=XY X∼U[0,1] Y∼N(μ,σ2) Z
Betrachten Sie die beiden Fälle und Y < 0 . Wenn Y > 0Y>0 Y<0 Y>0 , dann . Ebenso, wenn Y < 0 istXY≤z⟹X≤zY Y<0 dann .XY≤z⟹X≥zY
Find the distribution function ofZ by differentiating the above.
The integral above can be evaluated using the following sequence of transformations:
The resulting integrals can be simplified to yield
HereΦ(x) is the cumulative distribution function of the standard normal. An identical result is obtained for the case z<0 .
This answer can be verified by simulation. The following script in R performs this task.
Here are a few graphs for verification:
The undershooting of the theoretical answer seen in the graphs aroundz=0 is probably because of the constrained range. Otherwise the theoretical answer seems to follow the simulated density.
quelle
Besides the reciprocal of the slash distribution (or @Glen_b's "backslash distribution!"), a kind of ratio distribution, I don't know what to call it either, but I'll simulate one version in R.Y , I'll use Y=N(7,1) so that min(Y)>1 in most samples of N≤1M . Of course, other possibilities exist. For instance, any Y<1 would expand the range of XY beyond 1, and any Y<0 would of course expand it into negative values.
Since you specify a positive mean of
set.seed(1);x=rbeta(10000000,1,1)/rnorm(10000000,7);hist(x,n=length(x)/50000)
(Decrease size for slow computers! Or use
runif
if you know how!)quelle
runif
? It seems more idiomatic and seems also to be faster)hist(x,n=length(x),xlim=c(-10,10))
) (about 96% of the distribution seems to be inside those limits)