HP 35s Memory Full

Professional Engineer & PE Exam Forum

Help Support Professional Engineer & PE Exam Forum:

This site may earn a commission from merchant affiliate links, including eBay, Amazon, and others.

JavaJim

Member
Joined
Apr 18, 2010
Messages
20
Reaction score
0
Location
Michigan
I took the plunge and decided to try out the HP 35s. I was working my way thorough the user's guide and trying out some of the examples. I entered the Time Value of Money equation per the user's guide and I keep getting the "MEMORY FULL" message. I got this before when trying out another example and I had to delete saved equations and programs before the message went away.

There is no way that I have come anywhere close to the 30k of user RAM that is stated in the specs. I simply entered a short equation for the area of a circle that was about 15 bytes and then I entered the TVM equation that is 41 bytes. I stored some values in the statistical registers and those were only a few bytes.

I'm starting to get really peeved. I had decided to use the Casio fx-115ES and it works fine but I wanted programmability options. I'm an old school HP-41CX and HP-48 user so I thought I'd give HP a whirl but HP calcs sure ain't like they used to be if this is any indication.

Anybody else have this problem or did I just get a lemon?

 
That is strange. I have had many equations entered into memory and never ever got an out of memory message. Even on the 33 which has less memory, I have had many long programs entered and never ran out of memory. Maybe try the reset button on the back? Maybe you did get a bad one, and that would suck.

Here is a good site for some more programs, and talks about memory, if you get yours to work. HP35s Stuff

 
I enter the program and get the correct checksum and byte length. Still, my calculator craps out even when I have cleared all other user memories. I'm really bummed out.

I have entered the TVM program. I also bought the book for the HP 33 equations and entered a bunch of those equations into the 35 in addition to the TVM program and still did not get that message. Something must not be right, you should be able to put hundreds of equations into the 35 before you run out of memory!

 
Well, I tried the [blue]-> [CLEAR]->3 to clear all and it didn't make a difference.

Then, I tried another reset key stroke sequence, [C][GTO], holding both keys simultaneously and it didn't make a difference.

Then, I tried resetting the calculator with the reset button on the back and it didn't make a difference.

Finally, I tried the granddaddy of memory clearing key stroke sequences, [C][R/S], holding all three keys simultaneously. The screen displayed MEMORY CLEAR. Then, I checked [Yellow][MEM] and it showed 30,087 bytes of program memory. Success!





Previously, the display showed only 220 bytes of program memory. Maybe the memory was scrambled during factory testing or maybe I still had memory allocated to all of the numerical integration examples that I ran earlier, although I did execute the clear equations and clear program functions. I'm not sure what happened but it seems to be working now. Maybe this will help some other poor soul who might end up with the same problem.








 
I'm also using the HP35S to solve the value of money problems fast. I did enter the formula and got no errors. I used the method described here: http://peexamhp35s.blogspot.com/ General equation for P/A, F/A, etc. very useful and a time saver (no need to interpolate i from the cerm tables).

 
This quadratic equation program will come in very handy:
Notice it is labeled Q for Quadratic
Get into programming mode by pressing blue, R/S
Line Instruction
------+-------------
Q001 LBL Q ; blue XEQ
Q002 CF 10 ; orange up arrow, 2, then decimal, zero
Q003 INPUT A ; orange x<>y, then A
Q004 INPUT B ; orange x<>y, then B
Q005 INPUT C ; orange x<>y, then C
Q006 -B÷(2xA) ;EQN, then +/-, RCL, B, ÷, (), 2, x, RCL, A, ENTER
Q007 ENTER ; ENTER
Q008 ENTER ; ENTER
Q009 B^2-4xAxC ; EQN, then RCL B,
Q010 x>=0? ; blue MODE, 5
Q011 GTO Q017 ; GTO, Q, 0, 1, 7
Q012 +/- ; +/- as in switch signs
Q013 sqrt ; press k key
Q014 i ; i as in imaginary
Q015 x ; x as in times
Q016 GTO Q018 ; GTO, Q, 0, 1, 8
Q017 sqrt ; press k key
Q018 2xA ; EQN, 2, x, RCL, A
Q019 ÷ ; ÷ as in divide
Q020 + ; + as in plus
Q021 x<>y ; x<>y as in swap x and y registers
Q022 LASTx ; blue, ENTER
Q023 - ; - as in minus
Q024 RTN ; orange, XEQ

Exit out of programming mode by pressing C (bottom left corner button)

check the program for correctness by orange, down arrow, 2.
Display should show LBL Q on top, LN=93 on bottom.
press orange, then hold down the ENTER key.
top line should show CK=AECE. This the checksum.
depress C (lower left corner button)

Execute program by XEQ, Q, ENTER
Type in the quadratic coefficient, then press R/S (upper left corner button)
Type in the linear coefficient, then press R/S (upper left corner button)
Type in the constant, then press R/S (upper left corner button)
a real number solution example:
(2x - 3)(x + 5) = 2x^2 +10x -3x -15 = 2x^2 +7x -15
A = 2, B = 7, C = -15
to get the negative 15, type in 15 then +/-
exact solutions are 3/2 or -5
1.5 appears in the Y register (top), and -5 appears in the X register (bottom)

a complex number solution example:
x^2 - 2x + 7
A = 1, B = -2, C = 7
to get the negative 2, type in 2 then +/-
Completing the square, the exact answer is 1 +/- i sqrt(6)
Approximate solutions are 1 + 2.4495i or 1 - 2.4495i
 
Back
Top