(35S) Statistical Distributions Functions
|
10-30-2015, 11:08 PM
Post: #41
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
(10-30-2015 07:43 PM)PedroLeiva Wrote: My apologies, I expressed badly. The system don´t let me send the * .EP files of the emulator programs that I type while testing what you were designing. Try your self; what the system warned me is that do not accept that file format for sending. Yes, the forum software allows just a limited number of file types. But AFAIK you can simply zip the .ep file and send the resulting .zip-file. Dieter |
|||
10-30-2015, 11:16 PM
Post: #42
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
[/quote]
Excellent |
|||
10-31-2015, 09:05 PM
(This post was last modified: 10-31-2015 09:45 PM by Dieter.)
Post: #43
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
(10-29-2015 07:18 AM)Dieter Wrote: I am not quite happy with the initial guess of the Chi² quantile. This is a very stripped down version of what's implemented in the 34s. But a more sophisticated version that usually converges within 3...5 iterations would require an estimate for the Normal quantile, which is also true for the Student inverse. So this can be done in a unified package that includes all three (or four) distributions. Status report: I am currently working on such a package, and I think it looks not too bad. The package can evaluate the Normal, Student, Chi² and partially F distribution's PDF, CDF and their inverses (except F). The inverse usually requires just a few iterations since the initial guesses are close to the true result. Switching between CDF/PDF and inverse is done by setting Flag 1 (think of "1nverse" ;-)). There are common input routines for the degrees of freedom (with error checks), the random variable X and the probability p. Numerically the major limits are the far Student's distribution tails, so if you need accurate CDFs below, say, 1E–10 a more sophisticated algorithm has to be used. That's why I am trying to implement the regularized Beta function. Which currently works fine with a series expansion for most practical cases of the F distribution. Here are some results: Code: Normal distribution The F distribution is evaluated via an (experimental) regularized Beta function. Once this runs sufficiently fast and accurate, this can also be used for the Student case. Dieter |
|||
10-31-2015, 09:11 PM
Post: #44
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
(10-30-2015 07:43 PM)PedroLeiva Wrote: My apologies, I expressed badly. The system don´t let me send the * .EP files of the emulator programs that I type while testing what you were designing. Try your self; what the system warned me is that do not accept that file format for sending. The forum will only allow upload of file types that it recognizes. The simplest solution for you is to add the files into a .zip file, then upload them. They are also smaller this way, which helps with your quota. --Bob Prosperi |
|||
11-01-2015, 12:44 PM
Post: #45
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
Dieter, to contribute to your work on Statistical Distribution Functions, herewith a pdf with instructions for execution of the compiled program you are developing. I ask for corrections and comments. From already thank you very much for your effort.
NOTE: it was impossible to attach an Excel file |
|||
11-01-2015, 09:17 PM
Post: #46
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
(11-01-2015 12:44 PM)PedroLeiva Wrote: Dieter, to contribute to your work on Statistical Distribution Functions, herewith a pdf with instructions for execution of the compiled program you are developing. I ask for corrections and comments. From already thank you very much for your effort. Thank you – I appreciate your efforts. You did quite some work for a program that is still under development. ;-) The instructions say that "x" is calculated for a quantile. Actually the quantile is x. The programs determine the quantile x for a given probability p. The latter is not given in % or ‰ (c.f. Student distr.). After each iteration step, Y and X show the previous resp. current approximation. This is helpful in some extreme cases where both the CDF and the quantile currently can only be calculated with limited accuracy. The returned CDF is always the integral from –∞ to x (resp. 0 to x for Chi²), i.e. the "left side integral", which is usually called P(x). This is also true for the F distribution where HP's manual says that P(x) is the "right side integral", which usually is called Q(x). So the current F implementation returns Q(x) in Y and P(x) in X. I know want to change the general approach in that I'd like to provide two basic routines that evaluate the reqularized incomplete Beta and Gamma function (actually four routines as both functions are evaluated either by a series expansion or continued fractions). Beta can be used to calculate the Student and Fisher distribution, and Gamma does it for the Normal and Chi² distribution. Execution times seem to be a bit longer, but on the other hand now even cases far out in the distribution tails can be handled. The plan is to get reasonably accurate results even for p=1E–499. ;-) (11-01-2015 12:44 PM)PedroLeiva Wrote: NOTE: it was impossible to attach an Excel file That's easy: simply zip it. Dieter |
|||
11-05-2015, 01:37 PM
Post: #47
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
(11-01-2015 09:17 PM)Dieter Wrote: Thank you – I appreciate your efforts. You did quite some work for a program that is still under development. ;-) Update: I am still working on this program package. The current versions return both the PDF and the CDF simultaneously. Now I wonder if the PDF really is that useful. Maybe it's better to return both P(x) and Q(x) = 1–P(x), especially for values far out in the distribution tails where P(x) rounds to 1. What do you think? Dieter |
|||
11-05-2015, 02:16 PM
Post: #48
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
Update: I am still working on this program package. The current versions return both the PDF and the CDF simultaneously. Now I wonder if the PDF really is that useful. Maybe it's better to return both P(x) and Q(x) = 1–P(x), especially for values far out in the distribution tails where P(x) rounds to 1. What do you think?
Dieter [/quote] I think you are right, at list only P(x) and Q(x) for Fisher distribution, for the rest, its ok to keep PDF calculation. Always is importan to have "x" value from probability (inverse) |
|||
11-13-2015, 06:59 PM
(This post was last modified: 11-13-2015 07:06 PM by Dieter.)
Post: #49
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
(11-05-2015 02:16 PM)PedroLeiva Wrote: I think you are right, at list only P(x) and Q(x) for Fisher distribution, for the rest, its ok to keep PDF calculation. Always is importan to have "x" value from probability (inverse) I am still working on it. Here is a list of what the current version can do: Normal distribution:
The distribution results are stored in registers A...D, so the user can easily adjust the values that are returned in Y and X. I just don't know when and if this will ever get finished. ;-) Dieter |
|||
11-13-2015, 08:04 PM
Post: #50
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
[I am still working on it.
Here is a list of what the current version can do: Normal distribution:
The distribution results are stored in registers A...D, so the user can easily adjust the values that are returned in Y and X. I just don't know when and if this will ever get finished. ;-) Dieter Dear Dieter Could you try to publish the F Fisher program individually, while the compile versión is finished? With my sincere recognition of your hard work, Pedro |
|||
11-13-2015, 09:05 PM
Post: #51
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
(11-13-2015 08:04 PM)PedroLeiva Wrote: Could you try to publish the F Fisher program individually, while the compile versión is finished? The current program pack uses a number of common routines for the various distributions. For instance, the Fisher module requires the regularized Beta function, Euler's Beta and two common input routines. This approach also removes the contraints of the HP67/97 stat pac's Fisher routine where at least one of the df has to be even. All four distributions are evaluated using either the regularized Gamma or Beta function. These two functions even allow an easy implementation of the Binomial and Poisson distribution. In other words: extracting only the Fisher code does not make much sense since several other routines are required as well. I recently posted a short 35s program for Student's t distribution. It runs quite fast and works well for most practical cases, i.e. for probabilities not too close to 0 or 1. That's what I like about it. The current version is based on the regularized Beta function, which does not run that fast but it allows some nice things like evaluating the quantile for, say, 10 df and P(x)=1E–400 (result = –2,56452571895 E+40). The complete code now has about 2600 Bytes (without the old Student version). Especially the quantile functions include some know-how from the respective WP34s routines. IIRC the whole pack consists of eleven routines in total. It's getting bigger than I initially thought. ;-) Dieter |
|||
11-14-2015, 11:22 PM
(This post was last modified: 11-14-2015 11:26 PM by Dieter.)
Post: #52
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
(11-13-2015 06:59 PM)I Wrote: I am still working on it. Update: I know implemented a (not too sophisticated) function for the Fisher quantile. It works quite well for both df > 2, but there are some issues for df=1 or 2, at least if at the same time the probability is close to 0 or 1. Otherwise it seems OK. At least the results are good enough to show the one or other inaccuracy in the Fisher quantile tables at nist.gov. And they are better than just three decimals. ;-) Let me know if you want to play around with an emulator .ep file. Dieter |
|||
11-15-2015, 03:04 PM
Post: #53
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
[/quote]
Much I would like to try the Fisher F function with the emulator (* .EP), please also send me the instructions for the incoming and outgoing data. From already thank you very much. Pedro |
|||
11-15-2015, 09:26 PM
(This post was last modified: 11-17-2015 09:29 PM by Dieter.)
Post: #54
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
(11-15-2015 03:04 PM)PedroLeiva Wrote: Much I would like to try the Fisher F function with the emulator (* .EP), please also send me the instructions for the incoming and outgoing data. I have attached a zip file that contains both the emulator .ep file and a PDF with instructions for Student's t distribution. The four distributions (XEQ N, S, C and F) are handled much the same, so instructions for one of them should do. Only the two asymmetric distributions (Chi² and F) of course do not return the two-sided symmetric integrals A(x) resp. B(x) = 1–A(x). EDIT: the original attachment has been removed, please see note at the end of this post. The programs run either in cdf mode (flag 1 clear) or in quantile mode (flag 1 set). In cdf mode, various cumulative distribution functions and the density function are calculated and returned on the stack and in registers A...D. In quantile mode, the value of the random variable is determined for which the (lower tail) cdf equals the entered probability ("inverse cdf"). The quantile functions use Halley's method for the Chi² and Student case and a very effective extrapolation scheme due to Abramovitz & Stegun for the Normal distribution. The Fisher quantile is handled by a simple Newton iteration, it is intended for both degress of freedom larger than 2. Here and there the iteration may diverge, some code has been added to handle this, so you may also try 1 or 2 degrees of freedom, but this may require some time until the iteration converges. Please note: all this is experimental code! The programs may, and probably will, contain any arror you can imagine, and even those you can't. ;-) So try this and see what you get. In the meantime I am waiting for your error reports. Some remarks:
Finally, here is a test case for the Fisher distribution: For 10 and 15 degrees of freedom, determine the probability for an F-value of 2,7. Code: Just to be sure, clear flag 1: For a two-sided F-test, find the critial F-values for a significance level of 5%. This means we are looking for the two F-values that yield a probability of 0,05/2 resp. 1–0,05/2. Code: Set quantile mode: Now try and see what you get. I am waiting for your error reports and other suggestions. ;-) Dieter EDIT and WARNING: this post originally contained an attachment with an emulator file (.ep) and instructions for Student's t distribution. However, there were a few errors in the program that now have been corrected. Please see post #59 below for the latest version along with a complete set of instructions. Please do not use older program versions before Nov 17, 2015. |
|||
11-16-2015, 01:13 PM
Post: #55
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
Dear Dieter: I have used your “Distribution compile functions file”. It works perfect for the four statistical functions. Very nice and detailed instructions & examples for Student “t” distribution. In spite the four distributions are handled much the same, I wish to have instructions for the other three. Maybe I am asking for too much…….I will cooperate trying this task myself. Pedro
|
|||
11-16-2015, 07:08 PM
(This post was last modified: 11-16-2015 07:31 PM by Dieter.)
Post: #56
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
(11-16-2015 01:13 PM)PedroLeiva Wrote: Dear Dieter: I have used your “Distribution compile functions file”. It works perfect for the four statistical functions. I just found an error in the Normal quantile code. You do not have to replace the whole .ep file. Just go to step N078 XEQN024 and insert RCL S STOx D behind it. The attachment has been replaced by a corrected version (with an additional RCL/ S, which is one step shorter). (11-16-2015 01:13 PM)PedroLeiva Wrote: Very nice and detailed instructions & examples for Student “t” distribution. In spite the four distributions are handled much the same, I wish to have instructions for the other three. I'll see what I can do. Dieter |
|||
11-16-2015, 10:47 PM
(This post was last modified: 11-16-2015 10:49 PM by Dieter.)
Post: #57
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
(11-16-2015 07:08 PM)Dieter Wrote: I'll see what I can do. OK, here is a zip file with the PDFs for the four distributions. Maybe I'll add another version for the additional functions later (Gamma, Beta etc.). Dieter Stat_distributions_instructions.zip (Size: 301.7 KB / Downloads: 16) |
|||
11-17-2015, 12:44 PM
Post: #58
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
(11-16-2015 10:47 PM)Dieter Wrote:Thank you very much Dieter. It is a great job. Pedro(11-16-2015 07:08 PM)Dieter Wrote: I'll see what I can do. |
|||
11-17-2015, 09:20 PM
(This post was last modified: 11-19-2015 12:33 AM by Dieter.)
Post: #59
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
(11-17-2015 12:44 PM)PedroLeiva Wrote: Thank you very much Dieter. It is a great job. Pedro I just found another error in the incomplete Gamma function. It only shows up when the function is called independently from the distributions. Line G010 must be GTO G013 (not G014). Here is a corrected version along with a complete and reworked set of instructions in one single PDF file. Please check this and report any errors you find. Edit: the second example for the F-distribution has an error. The results for F(5) with 10 and 15 d.o.f. of course are 0,00275 and 0,99725. Which the program correctly returns. Maybe I'll post a revised PDF together with a slightly tweaked program version that can do one or two more tricks. Dieter Distributions_35s_3.zip (Size: 139.25 KB / Downloads: 20) |
|||
11-19-2015, 09:24 AM
Post: #60
|
|||
|
|||
RE: HP 35s Statistical Distributions Functions
Could you, Dieter, please include a pdf file of the latest programmes in human readable form to enter on the calculator?
|
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 2 Guest(s)