Re: TransformedDistribution -- odd problem
- To: mathgroup at smc.vnet.net
- Subject: [mg121111] Re: TransformedDistribution -- odd problem
- From: Bill Rowe <readnews at sbcglobal.net>
- Date: Sun, 28 Aug 2011 04:07:06 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
On 8/26/11 at 5:26 AM, paulvonhippel at yahoo.com (paulvonhippel at yahoo) wrote: >Here is a variant of the same difficulty. In the input I specify >that v2>2, yet in the output I get two solutions, one of which only >applies if v2<=2. Many thanks if you can tell me what I'm doing >wrong. I believe my mistake here may be causing more serious >problems in more complicated input. >In[3]:= Assuming[v2 > 2, >Mean[TransformedDistribution[ w, {w \[Distributed] >FRatioDistribution[v1, v2]}]]] // InputForm >Out[3]//InputForm= Piecewise[{{v2/(-2 + v2), v2 > 2}}, >Indeterminate] Asking Mathematica to Simplify the result from Mean solves the issue. That is, In[3]:= Assuming[v2 > 2, Simplify[Mean[TransformedDistribution[w, {w \[Distributed] FRatioDistribution[v1, v2]}]]]] Out[3]= v2/(v2 - 2) But why use TransformedDistribution at all here? There is nothing to transform since the result of the expression using the random variable is the random variable. So, the same result can be obtained more directly/simply as follows: In[4]:= Assuming[v2 > 2, Simplify@Mean[FRatioDistribution[v1, v2]]] Out[4]= v2/(v2 - 2)