Print
Show current content as RSS feed

Calculator blog

Musings and comments about our common interest

 


521 - 530 of 651 results
Published on by

Programming the HP41CL - some comments.

Programming the HP41CL - some comments.

While looking at the many programs found in the Solution Manuals or the modules, in many cases I find that the data entry to the program is too formatted and not flexible enough. In my opinion, what is really needed is a clear register usage, so that the user can put the correct data into the right registers beforehand - no need to go through all of the data in order to start the program again.

One typical case is the cashflow-related programs. If we agree that the 0 register is now, and register 1 = period 1, and so on, things can get very easy for data entry. You just need to define how many years you’re using, store that in a register outside of the possible year length scope, and then enter all the year data in the order you want, correcting it as many times you want, checking the contents whenever you want, etc. No need for cumbersome data entry procedures.

I would like to be able to apply the same logic to matrix entry, but here the knowledge of how a matrix is stored is much more involved. There, the example to follow is the HP15c user mode matrix data entry for serial entry, and the register 0 and 1 use to fix the pointer in the right cell.

Let’s show it with a couple of examples that I much prefer to the options found in the financial pac or in the financial solutions book: Net Present Value (NPV) and Internal Return Rate (IRR)

Lets agree that the maximum cash-flow length is 20 years (periods). This is OK for most investment projects. This assumption is important, since it is a “hard” limit in the program. If you feel that 10 years is enough, you can modify the program accordingly and be able to run it with a lower “SIZE” arrangement. However, this is not a concern anymore for us CL users.

We will focus on the NPV function, to make it as simple as we can, and forget about IRR. We will use the SOLVE function found in the Advantage pac to find it.

We use register 21 to store the number of periods to use, in order to make the loop shorter; we will use register 22 for the countdown, as the indirect register used in HP15c and others. And the registers 0 to 20 are self explained with regard to periods.

 

1 LBL VAN
2 1e2 Change X to %
3 /
4 1
5 +
6 1/X Prepare 1/(1+X)
7 ENTER^ Load the stack
8 ENTER^
9 ENTER^
10 RCL 21 Recall number of years
11 STO 22 Store in the indirect register
12 CLX Clear X
13 0 Enable stack lift to start the loop
14 LBL VAN1 Loop
15 RCL IND 22 Recal Year n cashflow
16 + add to previous value
17 * multiply times 1/(1+X)
18 DSE 22 Decrement register and check if zero
19 GTO VAN1 if not zero, do it again
20 RCL 00 Recall initial flow
21 + Add
22 RTN Return so it can be used as a 
1 LBL VAN
2 1e2 Change X to %
3 /
4 1
5 +
6 1/X Prepare 1/(1+X)
7 ENTER^ Load the stack
8 ENTER^
9 ENTER^
10 RCL 21 Recall number of years
11 STO 22 Store in the indirect register
12 CLX Clear X
13 0 Enable stack lift to start the loop
14 LBL VAN1 Loop
15 RCL IND 22 Recal Year n cashflow
16 + add to previous value
17 * multiply times 1/(1+X)
18 DSE 22 Decrement register and check if zero
19 GTO VAN1 if not zero, do it again
20 RCL 00 Recall initial flow
21 + Add
22 RTN Return so it can be used as a subroutine

 

Now, the IRR is extremely easy, based on the SOLVE capability of the Advantage Pac:

 

1 LBL TIR
2 VAN
3 SOLVE
4 END

 

Read entire post
More about: HP41cl
Published on by

Same for the new Sandmath 2x2

In a past blog issued we gave Angel Martín’s indications on how to change the behavior of the %T function in the excellent ROM module Sandmath Lib.4. The method intended to be used with the HP41CL calculator.

In short, the %T function does not appear in the basic function set of either the HP41c or the newest HP41cl. There are a number of ways to implement it in either machine, one of them being the Sandmath module. However, its behavior there is different from that found in HP financial calculators. In them, the “total value”, stored in register Y, is not “consumed” by the function, as is the case with most binary functions. This way, you can clear the x register, disabling stack lift, enter then a new “part” number and continue calculation. I can attest that this behavior is very practical when doing financial analysis.

Angel Martin was extremely helpful in finding and offering a solution for my specific case, Sandmath Lib4 ROM module.

But if you want to perform the same change on the newest version of Sandmath (currently called 2x2), you need to change the memory address. The procedure would be as follows:

Copy the module to RAM. The location of the 4SMT module was 126 and 127 (is a two block module)

"148>840", YMCPY

"149>841", YMCPY

"14C>844”, YMCPY

"14D>845”, YMCPY

The byte to change is 0xpF44, relative to where you put it. So:

Step 1. introduce in Alpha the text: "840F44-1111"

Step 2. execute YPEEK. You should get "840F44-0369”. This is to check that the previous step did work, and that you’re operating on the right byte.

Step 3. modify the Alpha value to "840F44-0331"

Step 4. execute YPOKE.

Step 5. Plug it to the port of your choice (mine was 2):

"840-MAX”, PLUG4

And that should be all.

Read entire post
More about: HP41cl, Sandmath
Published on by

Adventures with the HP41CL and the %T function..

Interesting adventures with the HP41cl

As you may have found in this blog, despite being engineer, I have a financial job. Therefore, I have used all HP financial calculators and I am a little bit accustomed to how they work.


In the routine costs analysis, you find yourself trying to see which % of a total are several quantities that form part of that total. HP developed several percentage functions, one of them, %CH, is included in the standard set of HP41 functions (as well as in the HP15c, for that matter). It is logical, since in science you usually try to find how much a variable has increased. However, the “percentage of a total”, %T, is absent in both calculators.


One key feature in all % functions in HP calculators is that they leave the y register untouched (the number from which the x percentage is taken, in the % function; the origin for change, in the %CH function, and the total, in the %T function). Most other functions “consume” the operands, which “collapse” into the result. Why?


Typically the y value needs to be used again. For %, you typically add or subtract the result of % to the base number. For example, if you want to add VAT to a price, you just enter the number, enter, the VAT rate, %, + and you’re done.


In the case of %CH, you may want to try with a different “new” value. You just CLX, which disables stack lift, enter the new value, and you’re ready for another %CH calculation.


With the %T function is the same. Once you have entered the total, you may want to calculate the percentage as part of the total of a number of quantities. Again, for each one, you press CLX, enter the new part, press %T and you’re there.


As I said, there’s no %T function in the plain HP41c. The HP41c manual, in its programming part, shows a supremely elegant way of performing this function:

LBL “%T”

1/X

%

1/X

As % keeps Y, so does %T defined as above.


But when I started working with the HP41CL, and having the Sandmath module as one of the plugged in, I decided to use the %T function that resides there. But when I started using it, I discovered that it did not keep the Y register! It rendered unusable the function for my purposes. What a pity.


I then wrote to Angel Martín to inform him of the function behavior. He had modeled it as the typical binary function, that consumes its parameters, but he came up with the solution: you just need to change a byte in a specific position in the ROM and that’s it. He did it from the top of his head - that’s how well he knows his modules!


As I am not too much versed in the inner working of the HP41cl, I asked him for more directions. Actually, he told me three different way of doing it, from the easiest to the most difficult and dangerous.


The first involves downloading the latest version of the module with the serial cable. A no-no in my case, since I decided early on not to have it. It is ugly, and in the long term I can live with the HP-IL.


The second was to copy the module from its flash location to RAM, then modify it there with YPOKE, and the redirect the PLUG to a port of my choice.


The third involved the initial part of the second, but then writing it back to flash - I did not dare to do it by fear of destroying something.


Here’s the procedure for number 2:


Copy the module to RAM. The location of the 4SMT module was 126 and 127 (is a two block module)

"126>840", YMCPY

"127>841", YMCPY

The byte to change is 0xp8EC, relative to where you put it. So:

Step 1. introduce in Alpha the text: "8408EC-1111"

Step 2. execute YPEEK. You should get "8408EC-0369”. This si to check that the previous step did work, and that you’re operating on the right byte.

Step 3. modify the Alpha value to "8408EC-0331"

Step 4. execute YPOKE.

Step 5. Plug it to the port of your choice (mine was 2):

"840-DBL", PLUG4

Read entire post
More about: HP41cl
Published on by

HP41CL and time module

Read entire post: HP41CL and time module

I have found a time module for the HP41CL and I am now enjoying the facilities it provides.

The most important part, in reality, were the time functions that were already available from the beginning, thanks to the architecture devised by Monte; but it is nice to use your calculator as a machine to keep your appointments. Of course, an smartphone is much better for that purpose, even as a chronometer; but together with the HP IL interface, the HP41CL is able to control many things, like lighting, multimetres, even oscilloscopes.

You may have read my messages about the HP3468A. This is an HP-IL enabled machine. I have two units (one for me, one for the shop), that I have converted to 230v/50hz use. They work flawlessly with the HP41CL.

We have an apartment in a mountain area. We know that the voltage there is not too stable, and the drops have damaged in the past some appliances. But, of course, the local utilities company denies everything (although they have started working to improve the supply with a new transformer house nearby). To prove the point, I have set up the voltage meter of the HP3468A so that it is triggered and read by the HP41cl each 5 minutes. This way I am able to map the whole performance daily. It is a pity that this method does not allow me to see the real peaks and valleys, but at least it gives a good proxy to the real situation. Then you can make some statistical calculations, apart from knowing the waveform (since I am also storing all the points - it is a pleasure to have such a big memory). I have seen voltages as low as 193, which is 16% lower than the European standard at 230.

(By the way, do you know the reason for the 230v? I have been told that the European bureaucrats, faced with different voltages across the English channel (240 and 220v), decided to set the standard at 230 and just enlarge the tolerances. That way, the UK would continue at 240 and the rest of Europe at 220, and everyone would be happy - except the appliances, working with much wider voltage tolerances)

Read entire post
Published on by

New products in the web

Today I am beginning to put in the website some of the modules I have. Some of them come with manuals, even a couple of them boxed.

Why?

Now that I have the mighty HP 41CL, there is no need for physical ROM modules. The only modules that may be necessary are the ones that have other utility beyond the ROM itself: the infrared printer module, the HP-IL module (of which I have now 2: one for me, and another to be sold with a HP 3468A multimetre to create a “vintage calc lab”) and the time module. These I will keep.

The modules I will be putting in the accessories part of the web are the following:

  • A CCD module, complete with manual and byte combinations sheet.
  • A Math-Stat module, boxed, with overlays
  • A home management module, boxed, with overlays
  • An Advantage Pac, with manual
  • A couple of X-Memory modules.
  • A couple of X-Functions modules

As soon as I modify it to European voltages, I will put in the web an HP 3468A HP-IL multimeter as well. I am keeping another one for me - it is amazing what can be done with that multimetre, a time module and a HP41c.

Read entire post
Published on by

How to create your own HP41CL

Read entire post: How to create your own HP41CL

I have finished the current batch of 41CL from Systemyde. Time to reorder. Please show your interest if you would like to buy one. If not, it’ll take longer to receive the board. I am only purchasing as many boards as interest shown from customers. I will order another one this time since the damned loss of my calculator during the latest business trip. Every time I think about it, it drives me mad.

It seems that many people are attracted to this calculator, but they do not dare to assemble theirs. On one side, they may have an old HP41c laying around, but for personal reasons, they want to keep it as is; on the other hand, to spend over 100€ in a bet in Ebay (where you can end up with a non functioning calculator, or one with deficient aesthetics) is a risky proposition. And they do not feel comfortable opening their calculator to do it.

While I am very satisfied by doing this work, I would not like European calculator amateurs to be put off to buy from us to get this wonderful calculator. I encourage them to try by themselves. If they fail, they always have professional repairers that can finish off their job properly.

Just a couple of hints to a successful HP41CL conversion.

  • It is fundamental to start off a good calculator. It does not need to work - in most cases it will work; but you need to have good battery contacts. Rust in them will spread though the calculator and ruin your investment.
  • There are alternatives to repair the battery/port connection circuit. You can buy from us a self-adhesive printed circuit that will substitute your original rusting unit.
  • Be careful to clean all contacts with a good contact cleaner. I use Craig’s Deoxit D5L for a start, then rub the contacts to remove all grease and rust, and then Craig’s Deoxit Gold for further protection. (the latter enters the metal interfaces protecting them. It is widely used in the Hi-fi specialist area, when there are noise in the connections.) The contacts to clean are
    • The contacts of the new board
    • The contacts that will connect with the board

- The contacts between the battery module and the circuit itself (on both sides)

- The contacts in the ports

  • The more tricky part comes on the assembly. You need to make sure that the board presses on the connection pad below it. This is the point where most full nut calculators fail. This makes indeed buying a non-functioning full nut such an easy bet, and the reason why non-working, good condition full nuts reach 60-70 € in Ebay - it is soo easy to repair them. Coming my way, there have been a number of repaired units, where you can see different methods used by different repairers. The most common is to put some springy matter around the holes, so that the box makes pressure on them and thereon to the pad below. Other methods with good results are putting oversized thin nuts on the calculator back, around the screw posts, so that when closed they make pressure on the board (be sure to cover all metal on them so that no electrical connection can happen) Be aware: you need to put pressure on the board, not on the screw posts. These do not help in making a good connection!
  • Do not be put off if it does not work on the first time. Discard the thought of the CL board not functioning - it has never happened to me. When I had problems, it always came down to bad connection between module and pad below. Add more springy matter, check the screw posts and repair if needed (Loctite’s Superglue 3 is good if you allow it to cure properly. Good practice is to secure it with a very fine transformer copper cable around it), and reassemble it again. It will work!
  • As a result of the CL project, I have several original C and CV working circuits, that I can install in your calculator if you ever fail. But I insist: no CL board has ever failed to me.
  • Regarding the serial connector: So far, in my previous and lost CL, I had it installed but to be honest, I have never used it. It occupies a full physical port permanently and gets little use. For my next CL, I will not put it initially and will consider instead other interface options, given that I already have a HP-IL. (look forward to a HP-IL special. I am preparing a “vintage laboratory”, HP-IL based, for home, complementing the HP-IB laboratory that I already have in the cabin.)
  • You can find in Ebay lots of additional parts. You can buy from us battery holders, rubber feet sets, etc. Beware that the rubber feet, while practical and cheap, can only be used once, compared with the original rubber feet that could be used several times.

Once you have assembled your own CL, you will enjoy a sense of achievement (even though it was so easy), and admiration on how can a 30 years old machine be so well designed. As well, you will feel grateful to Monte Dalrymple and his outstanding achievement.

But if you still do not dare to do it, even after the above, please contact us at jose@thecalculatorstore.com for quotes and pictures of the donor calculators. We’re more than happy to help!!! As well, we’re willing to buy your malfunctioning full nut HP41c or cv.

Now I am looking for a way to produce overlays for all the software we now have in a convenient way.

Last but not least: software. I do not know what you will fill your CL with; but I draw the Library #4 software suite from Angel Martín, including the PowerCL, Sandmath 44, advanced matrix #4, OS additions and others. Programmed mostly in Mcode, these change your calculator to a very different animal.

PS: Gardermoen airport has informed me that they have found the HP15c LE that I have lost the past week. Not all is lost! However, I had already opened another one, so I will give it to one of my children.

Read entire post
Published on by

I have lost my HP 15c LE !


I have Lost my HP15cL
This week I was traveling on a business trip to Norway. Many nice things - but somehow I managed to lose my trusty HP15c LE. It belonged to the initial American shipment, with serial number 182. The ones I have been selling were in the 23k range already. 
Now, although I carry the HP15c in my jacket pocket all the time, it is with the HP41CL how I perform most of my financial work. But I had the HP15C LE programmed with all kind of financial programs (you can see previous installments of this blog to see a description of these programs. I have developed a version for the HP41CL for those that happen not to be in one of the zillion modules it comes with.)
The good thing is that I kept 5 units more in reserve. My thought was: “one for me, two for each of my two children”. Maybe they will be more attracted to the new HP Prime… In any case, I will have to spend significant time in writing all the programs back into the machine. But it is worth it: in board meetings, we can compare return rates for projects immediately - much shorter than the time it takes to open excel and test some hypothesis. And there is no way you can come into the boardroom with the whole HP41CL shebang, showing yourself a little bit as a luddite. (if only they knew that they are looking at the best current scientific calculator available…)
I have some hints about where I may have lost it. I will try to find out tomorrow, but the chances are slim...
Fortunately I did not lose my original HP15c, which has the exact same programs in. 
On the other hand, I will have the guilty pleasure of opening again a new calculator - even though I did it already in the past.

I have Lost my HP15cL!!

This week I was traveling on a business trip to Norway. Many nice things - but somehow I managed to lose my trusty HP15c LE. It belonged to the initial American shipment, with serial number 182. The ones I have been selling were in the 23k range already. 

Now, although I carry the HP15c in my jacket pocket all the time, it is with the HP41CL how I perform most of my financial work. But I had the HP15C LE programmed with all kind of financial programs (you can see previous installments of this blog to see a description of these programs. I have developed a version for the HP41CL for those that happen not to be in one of the zillion modules it comes with.)

The good thing is that I kept 5 units more in reserve. My thought was: “one for me, two for each of my two children”. Maybe they will be more attracted to the new HP Prime… In any case, I will have to spend significant time in writing all the programs back into the machine. But it is worth it: in board meetings, we can compare return rates for projects immediately - much shorter than the time it takes to open excel and test some hypothesis. And there is no way you can come into the boardroom with the whole HP41CL shebang, showing yourself a little bit as a luddite. (if only they knew that they are looking at the best current scientific calculator available…)

I have some hints about where I may have lost it. I will try to find out tomorrow, but the chances are slim...

Fortunately I did not lose my original HP15c, which has the exact same programs in. 

On the other hand, I will have the guilty pleasure of opening again a new calculator - even though I did it already in the past.

 

Read entire post
Published on by

The HP view on education - some interesting aspects

When discussing the HP Prime with HP officers, it seems that it belongs to a long range strategy to recover the educational market.
You may have heard that there will be some kind of wireless connection. What for? Could it be cause for schools forbidding its use? Nothing further from the truth.
This wireless connection will be just with the professor’s dongle on his computer. Everything will be managed from the HP Classroom Manager, an already existing software that takes care of everything that exists in the class, and that allows the professor to remotely manage all computers in class. This software can link and manage the new calculators, too.
By the way, I saw a demo of it with computers, and it was impressive. You can block keyboard, and/or mouse, and/or screens of a single or several members of the class. You can start the presentations, manage the speed they run on each computer, run tests and exams and see in real time how everyone’s doing, etc.
A class full of computers is far from what I find desirable, but with calculators, it is a completely different thing. Unobtrusive, powerful, compatible with a writing pad on the table, it can really be the way to teach and learn maths.
As well, the wifi is one way: you just can connect with the professor computer dongle - no way to intercommunicate with other peers. It is just one way (or master and servant, in old computer parlance). I will forward the information to my children’s school.

When discussing the HP Prime with HP officers, it seems that it belongs to a long range strategy to recover the educational market.

You may have heard that there will be some kind of wireless connection. What for? Could it be cause for schools forbidding its use? Nothing further from the truth.

This wireless connection will be just with the professor’s dongle on his computer. Everything will be managed from the HP Classroom Manager, an already existing software that takes care of everything that exists in the class, and that allows the professor to remotely manage all computers in class. This software can link and manage the new calculators, too.

By the way, I saw a demo of it with computers, and it was impressive. You can block keyboard, and/or mouse, and/or screens of a single or several members of the class. You can start the presentations, manage the speed they run on each computer, run tests and exams and see in real time how everyone’s doing, etc.

A class full of computers is far from what I find desirable, but with calculators, it is a completely different thing. Unobtrusive, powerful, compatible with a writing pad on the table, it can really be the way to teach and learn maths.

As well, the wifi is one way: you just can connect with the professor computer dongle - no way to intercommunicate with other peers. It is just one way (or master and servant, in old computer parlance). I will forward the information to my children’s school.

Here is a short video about it. Tell me what you think about it:

 

Read entire post
Published on by

An attractive moment for calculator lovers

There are at this moment three interesting calculator development areas for us, and some other minor interesting possibilities:
- The new calculators from HP. The work behind the development of the new family of HP calculators is enormous, and it implies a significant commitment from HP. The prospect of the HP Prime is magnificent. I look forward to use it to teach maths to my children. The HP39gII is already an excellent tool - if crippled by the lack of CAS (but this was a requirement of that particular market. Let’s not forget that China is the goal of that calculator, and that there are several big markets where it is not distributed), but the HP Prime is several levels higher. It covers the space between the textbook and wolfram; you need to spend significant money in iPad apps to get to that level. And, for a classroom, it has the advantage over the iPad that you CAN’t use it to browse the internet and otherwise distract your pupils. (In technobabble, “the killer feature is that it does not have a browser”)
- The HP41CL. For those of us that are well over 40, this calculator was a part of our lives. There were many things that we did with it, we can create simple programs to ease our common calculations with our eyes closed, and it has the best keyboard feel of them all (of all practical calculators - there is a lot of pleasure to be had with the HP67 and HP97 calculators, but the lack of permanent memory makes them a no-no for daily work). The HP41CL allows us to do everything we wanted to do and could not afford at that time. For the price of 4 modules in the auction sites, you can have them all; and you can flash more on top; and everything runs up to 50 times faster.
- Our community projects, of which the WP34s and the WP43s project are the best example. Everything I have seen from the WP43s project is impressive, and competitive with any offer in the market. I really think there is room for a proper RPN calculator  that can be used without mastering a doctor’s degree in computing. The HP42s was the last of that era; and while the WP43s is fantastic for what it does and clearly superior many others, it lacks the easy of use and interface of the former. Of course, this is not the fault of the creators, due to the limits of the platform used (the HP30b), in particular its lack of on-screen function keys and the limited resolution (and ugliness) of its segment-based screen.
Summing it all, it is a fantastic time to be in this business. Let’s remember that it was close to dead several years ago…Now we only need someone to realize that there is a permanent space for the HP15c LE - taking into account that the development is all done (some bug fixing would be great)

There are at this moment three interesting calculator development areas for us, and some other minor interesting possibilities:

 

- The new calculators from HP. The work behind the development of the new family of HP calculators is enormous, and it implies a significant commitment from HP. The prospect of the HP Prime is magnificent. I look forward to use it to teach maths to my children. The HP39gII is already an excellent tool - if crippled by the lack of CAS (but this was a requirement of that particular market. Let’s not forget that China is the goal of that calculator, and that there are several big markets where it is not distributed), but the HP Prime is several levels higher. It covers the space between the textbook and wolfram; you need to spend significant money in iPad apps to get to that level. And, for a classroom, it has the advantage over the iPad that you CAN’t use it to browse the internet and otherwise distract your pupils. (In technobabble, “the killer feature is that it does not have a browser”)

 

- The HP41CL. For those of us that are well over 40, this calculator was a part of our lives. There were many things that we did with it, we can create simple programs to ease our common calculations with our eyes closed, and it has the best keyboard feel of them all (of all practical calculators - there is a lot of pleasure to be had with the HP67 and HP97 calculators, but the lack of permanent memory makes them a no-no for daily work). The HP41CL allows us to do everything we wanted to do and could not afford at that time. For the price of 4 modules in the auction sites, you can have them all; and you can flash more on top; and everything runs up to 50 times faster.

 

- Our community projects, of which the WP34s and the WP43s project are the best example. Everything I have seen from the WP43s project is impressive, and competitive with any offer in the market. I really think there is room for a proper RPN calculator  that can be used without mastering a doctor’s degree in computing. The HP42s was the last of that era; and while the WP43s is fantastic for what it does and clearly superior many others, it lacks the easy of use and interface of the former. Of course, this is not the fault of the creators, due to the limits of the platform used (the HP30b), in particular its lack of on-screen function keys and the limited resolution (and ugliness) of its segment-based screen.

 

Summing it all, it is a fantastic time to be in this business. Let’s remember that it was close to dead several years ago…Now we only need someone to realize that there is a permanent space for the HP15c LE - taking into account that the development is all done and there are no more costs to bear (some bug fixing would be great but not really required!)

Read entire post
Published on by

HP official news about Prime!

HP Unveils Touch-enabled HP Prime Graphing Calculator

HP today introduced the HP Prime Graphing Calculator, an innovative, multi-touch LCD, full color graphing calculator that will excite math enthusiasts and gadget lovers alike.  The sleek new design puts the power of touch-enabled calculations in the palm of your hand.

 

The Power of Touch

HP Prime is the first color touch screens in the industry that today’s gadget savvy students can easily interact with. Using HP Prime, students can manipulate complex graphs and geometric images intuitively on the touchscreen.  

 

Students using the HP Prime will benefit from tools and applications that take graphing calculators to a whole new level. The integrated tool suite includes features such as the Advanced Graphing app, which allows you to graph almost anything in x and y including inequalities, and a powerful Computer Algebra System (CAS) that can perform computations in a spreadsheets.  

 

The combination of the sleek, brushed metal and touch screen with the reliable HP design and feel makes HP Prime a welcome disruption to the outdated stylus and button-based options in the market to-date. 

 

Connectivity

The HP Prime Connectivity Kit opens the door for an integrated HP education experience. Students, teachers, or parents can connect the calculator to a PC via USB or  wirelessly via a wireless connectivity kit which will be sold separately. This allows students to create, edit, and send apps, programs, notes and more to the HP Prime from their PC. If a student forgets to bring the HP Prime home for homework, the PC-based emulator ensures all assignments are completed by replicating the calculator’s function and user interface with an easy-to-use Window-based software.

Availability

·   The HP Prime Graphing Calculator is expected to be available worldwide in the Fall of 2013.

Please enjoy the super-big picture below!!! (Note: you need to scroll to the right A LOT! It is a very big image and the calculator is in the centre of it)

HP_prime_front_picture.jpg

 

Read entire post
More about: HP prime
521 - 530 of 651 results