Little explorations with HP calculators (no Prime)
|
03-28-2017, 09:32 PM
(This post was last modified: 03-28-2017 09:33 PM by pier4r.)
Post: #61
|
|||
|
|||
RE: Little explorations with the HP calculators
experiences using the EQW. Is the following a known bug or there is there a reason for the error? (three powers one over the other are refused, if split with parentheses , they are computed)
Wikis are great, Contribute :) |
|||
03-29-2017, 01:58 AM
(This post was last modified: 03-29-2017 01:59 AM by Han.)
Post: #62
|
|||
|
|||
RE: Little explorations with the HP calculators
Those are two very different numbers. The first one is equal to 27^27 (39 decimal digits) which is much smaller than the second number (3 638 334 640 025 decimal digits). Since each digit is a nibble (4 bits), there is not enough memory to hold all the digits.
The order of operations (due to the explicit parentheses) makes the difference. Graph 3D | QPI | SolveSys |
|||
03-29-2017, 06:02 AM
Post: #63
|
|||
|
|||
RE: Little explorations with the HP calculators
True, I did not pay attention that parentheses work even in the exponential case. I'm doing too many basic errors, not good.
Wikis are great, Contribute :) |
|||
03-29-2017, 07:54 AM
(This post was last modified: 03-29-2017 07:55 AM by Dieter.)
Post: #64
|
|||
|
|||
RE: Little explorations with the HP calculators
(03-28-2017 07:32 PM)Han Wrote:(03-28-2017 06:13 PM)pier4r Wrote: Could you explain (or hint a known relationship) how did you get that d/2+x = d/2*sqrt(2) ? Right you are! The following picture should say it all. Log in and click to enlarge. Dieter |
|||
03-29-2017, 08:48 AM
Post: #65
|
|||
|
|||
RE: Little explorations with the HP calculators
(03-29-2017 07:54 AM)Dieter Wrote: Right you are! Neat image, which tools did you use? Wikis are great, Contribute :) |
|||
03-29-2017, 09:51 AM
Post: #66
|
|||
|
|||
RE: Little explorations with the HP calculators
GeoGebra maybe --> https://www.geogebra.org/
|
|||
03-29-2017, 11:04 AM
(This post was last modified: 03-29-2017 11:07 AM by pier4r.)
Post: #67
|
|||
|
|||
RE: Little explorations with the HP calculators
Thanks Simone.
Anyway, following the recent pattern, I guess I'm missing something obvious here. I can determine almost all the angles but not the wanted ones. Furthermore I do not even have a clue how can I employ the 50g to help me (until now I had some pseudo-working directions on the previous problems) http://i.imgur.com/fWE9736.jpg Wikis are great, Contribute :) |
|||
03-29-2017, 11:31 AM
Post: #68
|
|||
|
|||
RE: Little explorations with the HP calculators
(03-29-2017 11:04 AM)pier4r Wrote: Thanks Simone. Have you considered the sum of the angles in a triangle and a quadrilateral, and properties of vertical angles? Graph 3D | QPI | SolveSys |
|||
03-29-2017, 11:49 AM
(This post was last modified: 03-29-2017 11:50 AM by pier4r.)
Post: #69
|
|||
|
|||
RE: Little explorations with the HP calculators
(03-29-2017 11:31 AM)Han Wrote: Have you considered the sum of the angles in a triangle and a quadrilateral, and properties of vertical angles? Yes I considered the angles in a triangle (180) and quadrilateral (360), I considered that an angle is the same when opposite or the complementary that have a sum of 180. Unless I missed some internal shape, I got all the possibilities of which I'm aware of. What I did see after your question is the concave pentagon. And maybe this will help. Wikis are great, Contribute :) |
|||
03-29-2017, 01:07 PM
Post: #70
|
|||
|
|||
RE: Little explorations with the HP calculators | |||
03-29-2017, 06:15 PM
Post: #71
|
|||
|
|||
RE: Little explorations with the HP calculators
(03-29-2017 11:49 AM)pier4r Wrote:(03-29-2017 11:31 AM)Han Wrote: Have you considered the sum of the angles in a triangle and a quadrilateral, and properties of vertical angles? So \(\angle BED\) , \(\angle BDE \), \( \angle CDE \) and \( \angle AED \) should be the only angles whose measure you cannot determine directly from the properties mentioned. What if you set up an appropriate system of equations involving these angles? Graph 3D | QPI | SolveSys |
|||
03-29-2017, 06:35 PM
Post: #72
|
|||
|
|||
RE: Little explorations with the HP calculators
Interesting idea, again I missed that, I'll try as soon as I finish the other stuff (I just discovered DIR ... END on another thread)
Wikis are great, Contribute :) |
|||
03-29-2017, 06:58 PM
Post: #73
|
|||
|
|||
RE: Little explorations with the HP calculators
(03-16-2017 11:06 AM)Logan Wrote:(03-15-2017 11:56 PM)Thomas Okken Wrote: in fact, many such problems are notoriously difficult, for example: K Fermat |
|||
03-30-2017, 08:30 AM
(This post was last modified: 03-30-2017 08:39 AM by pier4r.)
Post: #74
|
|||
|
|||
RE: Little explorations with the HP calculators
My Hp 50g is actually computing since 10+ hours (and I dread that it will take days to finish) so I cannot readily try the suggestions of Han.
The code, that maybe is extra unoptimized (note: I do not like to just optimize the code, it has to be also readable if I want to expand it in the future, without remembering much about it. So also readability is a factor) is the following - me trying the DIR END structure but before applying the idea of compiled local variables : (It still has to go through some modifications, I decided to collect the results for the round robin format but, after testing for 2 repetitions, I could not imagine such lengthy process and I cannot estimate when it will finish too. So it may finish in the next minute. This is a clear example why my low quality batteries last few hours. Holy usb chargers directly from the power outlet! If you have any tip by chance [the file is long and ugly, but it works], I'm listening Further versions, if any, will be stored here ) Code:
Wikis are great, Contribute :) |
|||
03-30-2017, 12:13 PM
Post: #75
|
|||
|
|||
RE: Little explorations with the HP calculators | |||
03-30-2017, 12:26 PM
Post: #76
|
|||
|
|||
RE: Little explorations with the HP calculators
(03-29-2017 06:15 PM)Han Wrote: So \(\angle BED\) , \(\angle BDE \), \( \angle CDE \) and \( \angle AED \) should be the only angles whose measure you cannot determine directly from the properties mentioned. What if you set up an appropriate system of equations involving these angles? I have tried this as well. Let <BDE = u, <BED = v, <CDE = x and <AED = y and it is possible to set up several linear equations, for instance... u + v = 162 x + y = 111 u + x = 132 v + y = 141 ...but I cannot get four independent ones, so there is no solution for a linear equation system. What do you get? Dieter |
|||
03-30-2017, 04:14 PM
Post: #77
|
|||
|
|||
RE: Little explorations with the HP calculators
(03-30-2017 12:26 PM)Dieter Wrote:(03-29-2017 06:15 PM)Han Wrote: So \(\angle BED\) , \(\angle BDE \), \( \angle CDE \) and \( \angle AED \) should be the only angles whose measure you cannot determine directly from the properties mentioned. What if you set up an appropriate system of equations involving these angles? I had not actually attempted this problem when I posed that quest. My question about considering a system of linear equations was merely that -- a question (i.e. was it tried, and does it work) -- and was not meant as an indication that I had solved it through linear systems. You are correct, though, that the resulting system is not sufficient for solving the problem (the system does have a solution; however it appears it has an infinite number of solutions assuming we are not restricted to whole degrees for the angles). I did eventually make some progress on this problem. I think I have a solution but I wonder if it is correct since it is not the cleanest. It is an elementary solution, but nowhere near what Paul Erdos would consider as being from "The Book." But what I ended up doing making use of the law of sines and cosines. Here's an outline of my solution. Let F be the point along CD such that AF is perpendicular to CD. G be the intersection of the blue lines. Observe that AC and AD are equal in length. Call this length L. Use basic trigonometry determine CF (in terms of L), which then gives you CD (since CD is twice the length of CF). The law of sines applied to triangle CAE will give you the length of CE in terms of L. Then use the law of cosines in triangle CDE to determine ED (again in terms of L). Lastly, apply the law of sines to triangle CGE to determine EG in terms of L. Now you can apply the law of sines to EDG to obtain the angle GDE (which is the same as angle CDE). I got approximately 76.32 degrees for the angle through a bit of scribbling (very likely I made a arithmetic mistake, I would imagine) and a basic scientific calculator (HP 32S). Graph 3D | QPI | SolveSys |
|||
03-30-2017, 05:47 PM
(This post was last modified: 03-30-2017 07:55 PM by Gerson W. Barbosa.)
Post: #78
|
|||
|
|||
RE: Little explorations with the HP calculators
(03-30-2017 12:26 PM)Dieter Wrote:(03-29-2017 06:15 PM)Han Wrote: So \(\angle BED\) , \(\angle BDE \), \( \angle CDE \) and \( \angle AED \) should be the only angles whose measure you cannot determine directly from the properties mentioned. What if you set up an appropriate system of equations involving these angles? That's what I'd done too, but the solution is very simple, I realize now. No need to solve any linear system. u = 72 v = 90 x = 60 y = 51 Explanation later. Gerson. PS: From E draw a perpendicular line to line AB, which intercepts it at F. Now we have two similar right-triangles: BEF and EFD. Angle DEF = angle EBF = 18 degrees, as we already know. Angle BDE, which you have named 'u' is its complement, 72 degrees. Finally, angle EDC, or your 'x', can be easily determined as 180 - 72 - 48 = 60 degrees. PPS: Please do not consider this. Without any grounds I had assumed angle BED was a right angle. Fooled by my own drawing... |
|||
03-30-2017, 06:02 PM
(This post was last modified: 03-30-2017 06:12 PM by pier4r.)
Post: #79
|
|||
|
|||
RE: Little explorations with the HP calculators
(03-30-2017 12:13 PM)Dieter Wrote: ?!? – *what* is it computing? No, not to that. So during an international tournament that used the knockout format (you know, teams meet and the winner proceeds) I realized that I could compare tournaments formats somehow. (in short: pick one format as reference, assign team strength, assign variance, do the math, see who wins in the reference tournament and in the other formats) I did a little search and I found out the swiss tournament format that is pretty neat, but I would have liked to know the statistical properties of this format compared to other formats. I started a comparison model on paper, using the sharp el 506w as random generator (and also for multiplications). I tested two or three cases and the comparison procedure looked promising. So I said, ok let's automate the process. But then something else happened and I put the idea aside. The other day I decided to resume the idea from my todos collection (note 1) and since I am also in a period where I'm trying to refresh and expand my user RPL / math knowledge, I decided to implement it on the 50g. First I did it in a program with nested programs as functions (see also this topic), then I refactored it to use the newly discovered (for me) DIR ... END structure.(Pretty neat) So I was all excited (and I still am excited) that finally I could manage better a large structure in a single file without clumsy workarounds or multiple tabs. After some hours of coding and debugging (debugging on the hp 50g, I mean the physical one, takes time. Although I discovered a neat solution thanks to nested programs. See topic mentioned above) finally the code worked for the first tournament format. The round robin. So I did two iterations as tests and I did not detect major flaws (could still be that there are some, I hope not). So I launched 1000 iterations to get the statistics back. I launched them at 0:56 30.03.2017 , local time. The calculator is still working (it is 20:09 local time). My fault was that when I launched the two iterations I did not take the execution time, I was eating. So I estimated some hours of work (at the end I still usel userRPL that is heavily emulated) but now I wonder if it will be finished before the weekend. I have to rethink about the role of the hp 50g, maybe it is not so suited for such tasks unless I go for hpgcc and hpgcc-based languages (I will likely skip sysrpl). I posted the code of the current working version of the tournament simulator in a previous post. I do not know if I missed obvious optimizations but I really thought that a tournament with 16 teams, so 240 pairings (120 pairings twice), repeated 1000 times would not take such amount of time. It is not the first time that I end up waiting hours/day on the hp 50 though. (note 1) About todos I do not know what the others do, but I try to collect my interesting todos. I always end up with more ideas than I'm able to process. I'm also pretty sure that there are plenty of people that have the same problem if not bigger (more todos than todos processing ability). Anyway at least I try to collect my todos, could be that someone will do it in the future. Wikis are great, Contribute :) |
|||
03-30-2017, 06:36 PM
(This post was last modified: 03-30-2017 07:04 PM by Han.)
Post: #80
|
|||
|
|||
RE: Little explorations with the HP calculators
(03-30-2017 05:47 PM)Gerson W. Barbosa Wrote: That's what I'd done too, but the solution is very simple, I realize now. No need to solve any linear system. I suspected there had to be a simple approach. I'll try your hints and also rework my solution to see where I may have made mistakes. EDIT (after some initial thoughts): Quote:PS: From E draw a perpendicular line to line AB, which intercepts it at F. Now we have two similar right-triangles: BEF and EFD. Angle DEF = angle EBF = 18 degrees, as we already know. Angle BDE, which you have named 'u' is its complement, 72 degrees. Finally, angle EDC, or your 'x', can be easily determined as 180 - 72 - 48 = 60 degrees. Are you saying draw EF so that \( \angle BFE \) is 90 degrees? If so, how does it follow that triangle BEF is similar to triangle EFD without also knowing that \( \angle BED \) is 90 degrees (which does not seem obvious to me). Or are you suggesting we make \( \angle BEF \) equal to 90 degrees? This would make it even less obvious how triangle EFD is even a right triangle. EDIT 2: Your solution seems to suggest that we only need angles A and C. Am I missing another simple observation ? Graph 3D | QPI | SolveSys |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 2 Guest(s)