Surely the following couple of expressions should both output True:
Simplify[
PDF[TransformedDistribution[(A + B)/2, {A, B} \[Distributed]
UniformDistribution[{{L, H}, {L, H}}]], t] ==
PDF[TriangularDistribution[{L, H}], t], L < t < H]
and
Simplify[
PDF[TransformedDistribution[(A + B)/2, {A, B} \[Distributed]
UniformDistribution[{{L, U}, {L, U}}]], t] ==
PDF[TriangularDistribution[{L, U}], t], L < t < U]
They aren't. At least not on my version 11.1.1.0. Only the first expression outputs True.
PDF[TransformedDistribution[(A + B)/2, {A, B} UniformDistribution[{{L, U}, {L, U}}]], (L + U)/2]yields(2 U)/(L - U)^2(in V11.3), which is nonsense because whenLandUare changed by any common addition the PDF should remain unchanged. – Coolwater Mar 23 '19 at 21:00Uif you pick any letter (a, b, c,...k, C, D,...,K) "below"L, then you end up withTrue. Choose any letter instead ofU"above"Land you'll not getTrue. And don't use thebugstag until you get confirmation from others that it is a bug. – JimB Mar 23 '19 at 21:20L == 0 || L + U != 2 twhich is notFalse. So rather than "bug", I'd call it "not so desirable" or "inconvenient" in the scheme of things. – JimB Mar 24 '19 at 01:59Simplify,FullSimplifyandReduce. This has be known for a long time. See this post from 2006. – m_goldberg Mar 24 '19 at 03:04