(15C)(DM15) - PDF/CDF and Inverse of a Normal Distribution
|
11-24-2021, 03:37 PM
Post: #1
|
|||
|
|||
(15C)(DM15) - PDF/CDF and Inverse of a Normal Distribution
Hello!
This is my second program I wrote for my new DM15. It calculates the probability density function (PDF), the cumulative distribution function (CDF) and their inverse functions (!) of a standardized normal function. Call it with the argument (Y) and the desired function number (X). The function number is 1 for the PDF, 2 for its inverse, 3 for the CDF and 4 for its inverse. To calculate the CDF I used some approximating function rather than integrating the PDF, which offers a accuracy of at least 2 digits (error < 1%) and is much faster. The label to call is D (distribution). Examples: * 0 (Y) and 1 (X) calculates PDF(0)=0.39 * 0.1 (Y) and 2 (X) calculates 1.66 (the positive solution) where the PDF is 0.1 * 1 (Y) and 3 (X) calculates CDF(1)=0.84 * 0.95 (Y) and 4 (X) calculates 1.64 where CDF(1.64)=0.95 The Code: Code:
Have fun! Regards deetee |
|||
11-25-2021, 01:27 PM
Post: #2
|
|||
|
|||
RE: (15C)(DM15) - PDF/CDF and Inverse of a Normal Distribution
(11-24-2021 03:37 PM)deetee Wrote: To calculate the CDF I used some approximating function rather than integrating the PDF, More like 3 digits, and, formula very compact ! cdf2(z) := 1/(1+exp(-0.07*z^3-1.6*z)) We need an extra term to push it to 4-digits accuracy. cdf3(z) := 1/(1+exp(0.0008*z^5-0.0743*z^3-1.595*z)) A Sigmoid Approximation of the Standard Normal Integral, by Gary R. Waissi and Donald F. Rossin Note: link won't work as-is. Remove trailing characters after .pdf, and try again. --- Approximation formula intentionally skipped fitting even powers of z-score. This made formula matching identity: 1 - cdf(-z) = cdf(z) 1 - 1/(1+exp(-x)) = exp(-x)/(1+exp(-x)) = 1/(1+exp(x)) |
|||
11-28-2021, 11:44 AM
Post: #3
|
|||
|
|||
RE: (15C)(DM15) - PDF/CDF and Inverse of a Normal Distribution
(11-25-2021 01:27 PM)Albert Chan Wrote: More like 3 digits, and, formula very compact ! Thanks for sharing this information and link. I developed my formula spending many hours with excel varying as few and simple parameters as possible. After reading your document and doing some research I found a similar result from Bowling et al (2009) with a maximal error of 1.4x10-4: CDF = 1/(1+exp(-0.07056*z^3-1.5976*z)) Despite there are many efforts from 1946 (Polya) to 2016 (Eidous and Al-Salman) it seems that no one has really solved this problem (simple formula, simple parameters, high accuracy) ... Regards deetee |
|||
11-28-2021, 02:02 PM
Post: #4
|
|||
|
|||
RE: (15C)(DM15) - PDF/CDF and Inverse of a Normal Distribution
(11-28-2021 11:44 AM)deetee Wrote: Despite there are many efforts from 1946 (Polya) to 2016 (Eidous and Al-Salman) it seems that no one has really solved this problem (simple formula, simple parameters, high accuracy) ... Perhaps not, but numerical integration is plenty fast on modern hardware, if not on the 15C. I believe that the distribution functions on the 48 series and the Prime use numerical integration. |
|||
11-28-2021, 05:37 PM
(This post was last modified: 12-16-2023 03:43 PM by Albert Chan.)
Post: #5
|
|||
|
|||
RE: (15C)(DM15) - PDF/CDF and Inverse of a Normal Distribution
(11-28-2021 11:44 AM)deetee Wrote: I found a similar result from Bowling et al (2009) with a maximal error of 1.4x10-4: Nice ! And, we can easily invert for z, without SOLVE ln(1/CDF-1) = -0.07056*z^3 - 1.5976*z // already a depressed cubic With cubic and linear term having same sign, use identity: sinh(3θ) = 4*sinh(θ)^3 + 3*sinh(θ) → z ≈ 5.494 * sinh(asinh(-0.3418*ln(1/CDF-1))/3) --- We can use above approximation for the error function, and its inverse. erfc(x) = 1 - erf(x) = cdf(-x*sqrt(2))*2 ≈ 2/(1+exp(0.2*x^3+2.259*x) ierfc(x) = icdf(x/2)/-sqrt(2) ≈ 3.885 * sinh(asinh(0.3418*ln(2/x-1))/3) --> ierf(x) ≈ 3.885 * sinh(asinh(0.6836*atanh(x))/3) |
|||
11-30-2021, 11:07 AM
Post: #6
|
|||
|
|||
RE: (15C)(DM15) - PDF/CDF and Inverse of a Normal Distribution
(11-28-2021 05:37 PM)Albert Chan Wrote: → z ≈ 5.494 * sinh(asinh(-0.3418*ln(1/CDF-1))/3) Hello Albert! Thanks for your formula - but I have problems because CDF has to be between 0 and 1 - and CDF-1 is negative, where the ln ist not defined ... hmm (or am I wrong?). But inspired by your "jaunty and cool " math-handling (and the TV-News from yesterday, where COVID-scientists worked with PDF and CDF functions) I developed some (new) formulae by myself (using hyperbolic functions): CDF(x) ≈ (1 + tanh(7/200* x^3 + 4/5 * x)) / 2 ... Maximal error < 4.10-4 And the corresponding Inverse-CDF (one real root of this cubic equation): x(CDF) = a * sinh(1/3 * asinh(b * atanh(1 - 2*CDF))) where a = -2 * sqrt(160/7/3) ≈ -5.52 and b = 3/32 * sqrt(7*15/2) ≈ 0.679 Probably I don't change my original HP-15C-program because of many more program steps for a little bit faster calculation (no SOLVE) but for my standard linux console calculator (CLAC, FORTH-like, no SOLVE-function) it's worth to define new functions for PDF, CDF and their inverse. Regards deetee |
|||
11-30-2021, 01:28 PM
Post: #7
|
|||
|
|||
RE: (15C)(DM15) - PDF/CDF and Inverse of a Normal Distribution
Hi, deetee
With 0 < CDF < 1, 1/CDF - 1 > 0 Also, cdf/icdf using tanh/atanh is equivalent to original exp/ln (1 + tanh(x))/2 = (sinh(x)+cosh(x)) / (2*cosh(x)) = e^x / (e^x + e^-x) = 1 / (1 + e^(-2x)) CDF ≈ 1/(1+exp(-0.07056*z^3-1.5976*z)) = (1 + tanh(0.03528*z^3+0.7988*z))/2 Similarly, for the inverse, ln(x) = 2*atanh((x-1)/(x+1)) z ≈ 5.494 * sinh(asinh(-0.3418*ln(1/CDF-1))/3) = 5.494 * sinh(asinh(-0.6836*atanh(1-2*CDF))/3) |
|||
11-30-2021, 02:46 PM
Post: #8
|
|||
|
|||
RE: (15C)(DM15) - PDF/CDF and Inverse of a Normal Distribution | |||
09-03-2024, 03:45 PM
Post: #9
|
|||
|
|||
RE: (15C)(DM15) - PDF/CDF and Inverse of a Normal Distribution
(11-28-2021 05:37 PM)Albert Chan Wrote:(11-28-2021 11:44 AM)deetee Wrote: I found a similar result from Bowling et al (2009) with a maximal error of 1.4x10-4: Hi Albert, Could yoou please explain how you arrived at: z ≈ 5.494 * sinh(asinh(-0.3418*ln(1/CDF-1))/3) I dont see how to get it even using the identity. Thanks! |
|||
09-04-2024, 02:18 PM
Post: #10
|
|||
|
|||
RE: (15C)(DM15) - PDF/CDF and Inverse of a Normal Distribution
FYI HP published a program for solving the Normal Distribution function on the HP-15C back in 1982. It uses numerical integration.
Page 60 of HP-15C Advanced Functions Handbook, August 1982 Page 51 of HP-15C Advanced Functions Handbook, HP 2011 reissue Page 60 of HP-15C Collector's Edition Advanced Functions Handbook A1 HP-15C (2234A02xxx), HP-16C (2403A02xxx), HP-15C CE (9CJ323-03xxx), HP-20S (2844A16xxx), HP-12C+ (9CJ251) |
|||
10-28-2024, 11:22 PM
Post: #11
|
|||
|
|||
RE: (15C)(DM15) - PDF/CDF and Inverse of a Normal Distribution
(09-03-2024 03:45 PM)spartacus123111 Wrote:(11-28-2021 05:37 PM)Albert Chan Wrote: Nice ! And, we can easily invert for z, without SOLVE Sorry, I missed your post ... We just scale coefficients to match. First, scale z^3 coeff = 4 -56.6893*ln(1/CDF-1) = 4*z^3 + 90.5669*z Next, scale z coeff to 3, ratio = 90.5669 / 3 = 30.1890 ≈ 5.494^2 Divide both side by 30.8190^(3/2) = 5.494^3 -0.3418*ln(1/CDF-1) = 4*(z/5.494)^3 + 3*(z/5.494) This now match sinh(3θ) = 4*sinh(θ)^3 + 3*sinh(θ), solve for sinh(θ) = z/5.494 |
|||
10-30-2024, 03:49 PM
Post: #12
|
|||
|
|||
RE: (15C)(DM15) - PDF/CDF and Inverse of a Normal Distribution
(11-30-2021 01:28 PM)Albert Chan Wrote: CDF ≈ 1/(1+exp(-0.07056*z^3-1.5976*z)) = (1 + tanh(0.03528*z^3+0.7988*z))/2 If we go for central area, formula is simpler. p = CDF(-z .. z) = 2 * CDF(0 .. z) lua> p = fn'z: tanh(0.03528*z^3+0.7988*z)' lua> z = fn'p: 5.494 * sinh(asinh(0.6836*atanh(p))/3)' lua> p(1), p(2), p(3) 0.6826606943611349 0.9544778797318427 0.9975360894437647 |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 2 Guest(s)