Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×
Math Linux Technology

Ask Slashdot: Replacing a TI-84 With Software On a Linux Box? 254

yanom writes "I'm currently a high school student using my TI-84 for mathematics courses. It has all the functionality I need (except CAS), but saying that the hardware is dated is putting it nicely. Waiting 4-5 seconds for a simple function to be graphed on its 96x64 screen just makes me want to hurl it at the wall. Recently, I've begun to notice the absurdity of doing my math homework on a 70's era microchip when I have an i7 machine with Linux within arm's reach. I've begun looking for software packages that could potentially replace the graphing calculator's functionality, including Xcas and Maxima, but both lack what I consider basic calculator functionality — xcas can't create a table of values for a function, and maxima can't use degrees, only radians. So, does anyone know of a good software package to replace my graphing calculator (and maybe provide CAS to boot)?"
This discussion has been archived. No new comments can be posted.

Ask Slashdot: Replacing a TI-84 With Software On a Linux Box?

Comments Filter:
  • by eldavojohn ( 898314 ) * <eldavojohn@noSpAM.gmail.com> on Friday December 14, 2012 @05:13PM (#42293281) Journal
    If you're not afraid of programming (and it sounds like you're not): R. Gimme more details if you want to know what packages to use for graphing and stuff but installing R is incredibly easy [r-project.org]. At the risk of tooting my own horn, you can read through this post [slashdot.org], the corresponding story and the replies to it. There are a ton of packages for producing graphs. Are you going for accuracy? Beauty? Speed? What?

    Lastly, please don't hate on the TI-84. I still have mine as well as a TI-89 and while they were both expensive, they are beautiful and trustworthy devices. Both have outlasted countless other computing machines that have passed through my usage.
    • by sinij ( 911942 )
      While I worked in academia I dealt with both R and matlab. Matlab is more mature, but it isn't free. Most of the code that get passed to you by others is an unreadable amateur code written in matlab. Most other academics wouldn't know how to run anything but matlab. Some advanced stats cannot be easily done in R, unless you want to write it from scratch (good luck with that).

      Overall - if you write your own code and don't expect to do anything else with it, R is fine. If you want to work with others, espe
      • "Matlab is more mature"

        That is not even close to being true. R surpasses but not outclasses Matlab in many instances and vice versa. It all depends on what you're doing.

        R has an unknown userbase (http://bigcomputing.blogspot.se/2011/07/figuring-out-number-of-r-users-in.html) but an impressive, free codebase (www.r-project.org)

        whereas Matlab has some 300,000 users (http://www.cs.cornell.edu/info/people/lnt/multimatlab.html) and an equally impressive codebase ( http://www.google.com/search?q=matlab+code [google.com]).

        R is

        • Re:R is easier (Score:5, Informative)

          by LourensV ( 856614 ) on Friday December 14, 2012 @07:32PM (#42296291)

          I've got an MSc in CompSci, and I'm now doing a PhD in a biology department. I teach a programming course using Matlab, and I've recently started using R to do my own analysis stuff, mainly because it's popular and I'd like to stay compatible with the rest of the field, as well as use some specialised software that works with it. I have to say, being used to real programming languages (such as C++, I'm not counting Matlab here, although see below) I'm quite frustrated with R. Function names are generally different from other languages and to me at least unintuitive, and the documentation is too often extremely vague and difficult to search.

          For example, the function match() returns the offsets of entries in a vector that match a given object. But what exactly constitutes a match, well, according to help(match) that is "to some extent a matter of definition". It goes on to give an example or two, but that definition remains elusive. Or look at this gem from help(as.vector):

          Value: For ‘as.vector’, a vector (atomic or of type list). All attributes are removed from the result if it is of an atomic mode, but not in general for a list result. The default method handles 24 input types and 12 values of ‘type’: the details of most coercions are undocumented and subject to change.

          First, a "vector of type list" is actually just a list. In R, a vector is an ordered collection of elements all of the same type, while a list is an ordered collection of elements of (possibly) different types. So, by the normal Liskov rules, one could say that a vector is a kind of list in which the types of the elements are all identical. According to the R language definition however, a list is a kind of vector. In practice, lists and vectors are used in rather different ways so their exact relation is not so relevant, and it doesn't make much sense for the help page to throw them together like this. Second, apparently attributes are removed for atomic vectors, but not "in general" for lists. This is a somewhat arbitrary inconsistency, and it leaves the reader to wonder if there are specific attributes or lists for which this doesn't count. But the kicker is in the last sentence: not only are the exact workings of this function explicitly undocumented, they are also subject to change without notice! Note that these are not functions from some obscure package that I pulled off of somebodies blog. They are core language functions, and unfortunately these examples are not exceptional. A colleague of mine recently had his whole analysis suddenly return weird results after a routine update of an add-on package, because someone decided to swap the order of the longitude and latitude arguments to a function for no particular reason.

          That's not to say that R is not usable, but in my opinion is is unsuitable for any kind of programming, and perhaps unsuitable for programmers. R is a powerful, extensible system for statistical analysis, with a command line interface. If you consider your text files with R code as reference notes rather than as source files, and if you use R interactively, copy-pasting lines from your notes and checking after every couple of operations that it's actually doing what you think it is, then you can do useful things with R. Looking around me, that is in fact how most people use it, and what I've taken to doing as well, although I can't resist attempting to automate things here and there.

          Comparing R to Matlab, in my eyes there's no contest in terms of ease of use. The Matlab help files are professionally written and tell you what you need to know in enough detail to be useful, and that difference alone makes it a lot better. The language itself is also a bit more sensible, at least to me, being designed as an easier-to-use alternative to FORTRAN, where R is based on LISP. I was originally considering moving my course to R from Matlab, since I don't like to teach proprietary software, but now that I have some experience with R I'm pretty sure

          • Re:R is easier (Score:4, Informative)

            by HuguesT ( 84078 ) on Saturday December 15, 2012 @07:56AM (#42300471)

            I'm somewhat surprised by this comment.

            The R language and associated libraries is completely described by these free books:

            http://cran.r-project.org/manuals.html
            http://cran.r-project.org/other-docs.html
            http://www.r-project.org/doc/bib/R-books.html

            In fact the reading of the short document http://cran.r-project.org/doc/manuals/r-release/R-intro.html by Bill Venables is enough to cover over 90% of what most people will ever need.

            R is an implementation of the S language by John Chambers [wikipedia.org], for which he got the 1998 ACM Software System award. It is *not* based on LISP in any way even if the FAQ mentions that one difference between the way R and classical S treats global variables can be compared with the way LISP does it. Even if it were, I don't see any problem with this. Your comment relating to people copy-pasting code in the R console mirrors the way I see people use Matlab every day, so I don't see how one can conclude anything from it.

            The S language predates Matlab by a few years. It is perfectly fine. Yes it has some quirks compared to C or Java or indeed Matlab, but it has some definite advantages like named arguments for functions, and vector/matrix/data frame handling capabilities that indeed Matlab does not match.

            Matlab definitely has a speed advantage but on the other hand R has a fabulous graphics engine. In fact it is in my opinion unmatched except by Splus, another, commercial implementation of S. In fact it is really not fair to compare R, which is a grassroot, free software implementation of a complex language, which is proprietary (and *expensive*)

            Matlab has a much more comprehensive library of useful routine for signal and image processing. S has a much more comprehensive library for statistics. This is because it is used by professional statisticians every day.

      • Comment removed based on user account deletion
      • by rmcd ( 53236 ) * on Friday December 14, 2012 @06:59PM (#42295607)

        What advanced stats do you have in mind that can be done easily in Matlab but not in R? And I think your assessment of the relative acceptance of the two is out of date. R awareness is growing fast.

        The choice really depends on what you are doing. Matlab is industrial strength engineering software. R is a a powerful statistics oriented programming language. In my experience, R's statistical capabilities are a strength relative to Matlab. Data handling (such as reading a csv file without barfing) is much easier in R than in Matlab. Moreover, Matlab is quite expensive. This is fine in a professional setting, but a showstopper if you're a small operation. The poster can get a student license, but why not use Octave or R? The two languages are actually similar in many respects, see David Heibeler's page [umaine.edu].

        I know researchers who have ditched Matlab in favor of R/C++. It really depends on what you're doing.

    • Re: (Score:3, Informative)

      by cheesybagel ( 670288 )
      I also give my backing to R. There are other packages which look more like integrated though like Octave [gnu.org] or Euler [sourceforge.net]. You can even get Mathematica [wolfram.com] for Linux but it is somewhat expensive.
    • by s.petry ( 762400 )

      Matlab is exceptional, but of course has some cost. I believe that there are student copies much cheaper than commercial versions. The language is simple, yet quite advanced.

      If you are not able to afford Matlab, or prefer home grown.. Linux with basic programming in C and xplot can do quite a lot.

      • by bmcage ( 785177 ) on Saturday December 15, 2012 @05:51AM (#42300041)

        Matlab is exceptional, but of course has some cost. .

        Everything you can do in Matlab, you can do better in python. I work in a mathematics department at this moment, so I do know the subject somewhat. If you need some package of a person which is only present in matlab, then porting to python is not that hard, as the syntax can be easily translated to numpy/scipy. For high school students: ipython notebook: http://ipython.org/ipython-doc/dev/interactive/htmlnotebook.html [ipython.org]

        For pure mathematics, preference goes to Sage in many circles, However, having been on a conference and seeing the new features in ipython notebook, and knowing they just received a 1.15 million grant by the Sloan foundation, it has a bright future.

        Nevertheless, the relativity department here uses maple for their theoretical work. Most engineers also, but those always try to solve problems first by throwing money toward it :-) From a 'get your work done fast' and from an engineering point of view, maple/mathematica/matlab are great off course. From a 'control your own work', 'know what you are doing', and 'build for the future', chosing a python solution (ipython, matplotlib, sage, ...) is a good bet.

    • and maxima can't use degrees, only radians

      WAY TO GO MATH STUDENT!! :D

      (Guess it's more convenient if it could handle it and maybe it can't be scripted or something such but I found that funny regardless and you can't take that away from me!)

    • R -- I've heard good things about R, and it's a good tool for certain fields. But if the original poster is interested in going into an Engineering field then different tools are more appropriate (It's better to use the same or similar tools that your colleagues are using).

      Matlab -- one of the industry standards for number crunching and plotting.

      Octave -- a Matlab clone that is frequently good enough. (My company can't quite afford a Matlab license, and I get by with Octave when I need that functionality).

  • try these (Score:3, Informative)

    by Anonymous Coward on Friday December 14, 2012 @05:14PM (#42293335)

    gnuplot
    and bc

    • Or maybe just tilem, which is a TI-8x emulator ...

    • I suggest sage, it outperforms Matlab & is free!

      http://www.sagemath.org/ [sagemath.org]
      [...]
      Sage is a free open-source mathematics software system licensed under the GPL. It combines the power of many existing open-source packages into a common Python-based interface.

      Mission: Creating a viable free open source alternative to Magma, Maple, Mathematica and Matlab.
      [...]

  • If you don't mind doing coding, try Sage [sagemath.org] or Python + IPython + NumPy + SciPy. For a quick calculator I like to just use bc in a terminal.
    • by Vireo ( 190514 ) on Friday December 14, 2012 @05:23PM (#42293557)

      I concur: the Python shell is a very very powerful calculator given that you can define functions in the interpreter. There are many graphics packages for Python; Matplotlib is perhaps the most complete albeit not the symplest. As suggested above, installing Python with the IPython shell, NumPy and SciPy, enables the "PyLab" IPython mode, which is similar to what Matlab would offer in terms of graphics and computation integration.

      Simpler to install and learn is perhaps Octave (with plots using GnuPlot), which would behave similarly. Although for the long term, I'd say learning the Python shell is more useful than learning Octave.

      • Definitely recommend NOT using the interpreter here, unless you're doing simple calculations. Saving your work to a file will allow you to check and edit mistakes. Interpreter is good for testing out functionality, but not for making a product that will ultimately be delivered.

    • Re: (Score:3, Interesting)

      by adam.voss ( 1854938 )
      Rather than running Sage in terminal, look at Sage Notebook [sagenb.org]. It is Sage with a web-based GUI. I have not played with it since they went to the new versions that include the OpenID auth; however, the math department at my alma mater host s server and had students use it for class as a replacement for Mathematica in a number of courses. I found it worked well for many things. You could either run a local copy or use one of the freely accessible online servers.
  • by TWX ( 665546 ) on Friday December 14, 2012 @05:14PM (#42293343)
    ...a TI-84 emulator? So long as they didn't add wait-states to simulate the processing speed of the TI...
    • I'm not sure about Linux, but years ago when I was in school there was a Windows emulator for a lot of different TI calcs. You had to upload your ROM from your own calc, though, so that it wasn't stealing IP: you were basically cloning your TI calc onto your computer. It worked really nicely, and was great for programming in TI Basic and testing stuff out.

  • Octave (Score:5, Informative)

    by mjvvjm ( 1003135 ) on Friday December 14, 2012 @05:17PM (#42293381)
    Octave - a matlab work-alike
    easy plotting, extensive libraries for linear algebra, stats, etc.
    • This was the first thing I thought of when I saw the post. You need to learn a little of how to use it, but learning Octave is going to be a skill useful for probably at least the next 10-20 years, and something that will give you a good advantage in college as well as the real world jobs market. It uses a very similar language structure as Matlab, which is pretty much the "standard" mathematics program for companies/corporations for precision mathematics.
    • And there is a version that works on Android tablets. In terms of scientific computing, Matlab is the standard, and Octave is a very good work-alike.
  • WxMaxima is may go to choice for intense mathematical stuff.
  • Have you taken a look at the (free) program scilab?

    http://www.scilab.org/ [scilab.org]

    I use it a lot. It may be a little more than you need - almost more like an open-source "Matlab" but it is very good, and free.

  • Mathematica (Score:4, Informative)

    by michael_cain ( 66650 ) on Friday December 14, 2012 @05:20PM (#42293485) Journal
    It's not free, but a student license isn't much more than the high-end calculators (at least at local bookstore prices) and it will do just about anything you can imagine needing up through at least calculus. Even the mobile or browser front ends that use a Wolfram server are damned good, so long as you have network connectivity.
    • Mathematica. Best of the best.
      • by emt377 ( 610337 )

        Same here. I use Mathematica 8 Home edition (although on OSX) and always keep a worksheet open on a virtual screen. There are some nice third-party additions for things like bra*ket notation (if you have an interest in physics), various EE tools, and the online data is often handy. The documentation is good as well.

        I'm a big fan of HP calculators, having relied heavily in the past on the HP-67, HP-41 (overclocked and with a PPC ROM soldered on), and HP-48, and still have various others in my collection (

  • by Anonymous Coward on Friday December 14, 2012 @05:21PM (#42293521)

    Why do you want a CAS if you're not prepared to use it. For each trig function, define another which takes an argument in degrees and calls the built-in one with the argument converted to radians.

  • "instead of waiting 4-5 seconds to do something, i am interested in spending hours of effort to recreate/relearn it on a different platform"

    Why not use the "agonizing eternity" of 4-5 seconds to reflect on life, maybe hum a song, or do anything that helps your mind relax before you develop ADD and can ONLY do math?

    what karma? it's friday.

    • by Scutter ( 18425 ) on Friday December 14, 2012 @05:31PM (#42293769) Journal

      I agree! Why try to find a better way to do something when there's an out-of-date, inefficient way already invented? I mean, think of all of those useless hours you'll spend learning something new when you could be spending that time reflecting on life, or maybe humming a song!

      • Yes, for an even better solution why not just point out that you can find the answers on the internet. The point of homework is *not* to find a way out of doing it, and the point of waiting on your TI-84 is *not* so that you will waste your precious time. That title goes to slashdot.

    • by kwerle ( 39371 )

      Or maybe: I wonder if someone has already solve this problem?
      Or maybe: If I solve this problem, I wonder if anyone else might also benefit?

    • by overshoot ( 39700 ) on Friday December 14, 2012 @05:34PM (#42293841)

      "instead of waiting 4-5 seconds to do something, i am interested in spending hours of effort to recreate/relearn it on a different platform"

      An engineer is someone who will spend three hours figuring out how to do a two-hour job in one hour.

      • Sounds like my definition of a programmer:

        A person with the special kind of lazyness that makes him prefer spending three hours setting a problem up right, once, than spending ten minutes doing it twice.

        The program may not break even in time until the job has been done 36 times. But even when the job has been done twice the programming approach has already replaced five minutes of boredom with 175 minutes of satisfying fun.

        Not to mention that, if done properly, it keeps doing things correctly rather than s

      • by Nutria ( 679911 )

        Because then after the fourth time doing "the job", the engineer (or his proxies) have a net savings of time.

    • Because that's how smart people make the world a better place.

    • "instead of waiting 4-5 seconds to do something, i am interested in spending hours of effort to recreate/relearn it on a different platform"

      Why not use the "agonizing eternity" of 4-5 seconds to reflect on life, maybe hum a song, or do anything that helps your mind relax before you develop ADD and can ONLY do math?

      what karma? it's friday.

      I suggest just getting a better calculator.

      You tend to get used to something like a calculator with muscle memory and all of that. If you were out of school I would say go for the computer, but while you're in school, and subject to the restrictions of exams, it makes a lot more sense to just stick with using what you're always going to be using.

  • If you want something portable and compact, there are tons of emulators of programmable calculators (many of them free) for Android phones.

    If you want something more heavy-duty running on Linux, you have a choice between Octave, Python, and R.

  • by sinij ( 911942 ) on Friday December 14, 2012 @05:26PM (#42293667)

    Matlab. If you planning to go into science (not CS, actual science) ability to code in Matlab will put you head above any of your peers.

    • by jo_ham ( 604554 )

      Matlab. If you planning to go into science (not CS, actual science) ability to code in Matlab will put you head above any of your peers.

      I agree. I'm a chemist, and I barely skim the surface of what Matlab can do, but cftool and the general plotting features are second to none. Some of the stuff I see the physchem lot do with it is pretty damn good too.

      If the question is "can we do it in Matlab?" the answer is almost invariably "yes".

  • by gstoddart ( 321705 ) on Friday December 14, 2012 @05:29PM (#42293737) Homepage

    So, does anyone know of a good software package to replace my graphing calculator

    Presumably, you are allowed to take your calculator to exams, but not your Linux box.

    So, if you're going to end up needing the calculator for your exams, you might want to live with the suck to be sure you don't find yourself fumbling with a device you've not used in a while.

    And, to complete the old man aspect of this comment ... luxury, why in my day we used to dream of having a 4-5 second delay in drawing our graphs, we used to have to walk in chest deep snow, up-hill (both ways) to school and back, and do our graphing with rocks and twigs, and send them to the teacher with smoke signals. Of course, I had an onion on my belt, because that was the style in those days ...

    Anyway, good luck finding an alternative. :-P

  • by dogsbreath ( 730413 ) on Friday December 14, 2012 @05:33PM (#42293817)

    . . . there are some excellent graphing calculator apps for iOS and I am sure Android has a fair selection as well. They do 2D, 3D and solve algebra.

    Also there exist a number of HP emulations but I don't know if there are any for TI.

    All of them execute at some Warp factor faster than discrete calculators but there are some issues with using a device different from what the school recommends. My experience with guiding my own spawn around the perils of high school math leads me to believe that HSs (in Canada at least) are more interested in teaching button pushing than math. Many teachers have no interest in math and are perplexed when someone has an issue with something such as a different calculator solution.

    Besides that, when using alternatives you may get differing results or even some fantastic errors depending on how well written the code is.

    [RANT ON]
    Sorry, but I gotta say this: CALCULATORS OBSTRUCT THE LEARNING OF MATH

    phew, had to get that out

    My apologies for the caps but it is a rant after all . . .

    There is a place for calculators in engineering courses and in some aspects of learning math but you can get a PhD in Math Science without ever getting near a calculator. I saw my kids get all caught up in the numbers to the detriment of understanding the process and theory. When they started doing courses later on (such as physics, biology, chemistry and sociology-er 'stats'), they had to go back and learn some of the fundamentals that had never been emphasized because of the calculator fixation.

    Bottom line: use the TI and don't waste time on alternatives. Use that time to learn the theory.

    [RANT OFF]

    Well, unless of course you are a real nerd (like the rest of us) and do both: learn the math and are obsessive about calculation tools

    Cheers

    • "Also there exist a number of HP emulations but I don't know if there are any for TI."

      There is a great HP emulator callled Emu48. It emulates the HP 48GX and, with the proper ROM file, the HP50G. Personally I recommend the 50G.

      Of course, you will probably have to compile it for Linux. But if you have OS X you can get a ready-to-run app from the app store for less than $10. It uses the actual HP50G ROM (courtesy HP) and it works great. And you can use disk storage in place of a Micro SD card.

      The 50G has RPN, algebraic, and "textbook" display and entry modes.

      "Sorry, but I gotta say this: CALCULATORS MAY OBSTRUCT THE LEARNING OF MATH"

      There. FTFY.

      If you don't u

      • I respectfully disagree. There is no place for a calculator in High School math. It adds nothing to the experience.

        The story is different if you aren't teaching math as a subject but are using math for another purpose and need the numbers.

        But everybody is entitled to an opinion . . . no matter how wrong

        Cheers

        • "There is no place for a calculator in High School math. It adds nothing to the experience."

          What do you consider "High School Math"? Where I went to high school (which was admittedly some time ago), if you were in an advanced group you could get as much as 2 semesters of calculus in before graduation.

          Sorry, but if I'm working on calculus, and already know my algebra and trig, then I'll go ahead and use the calculator for said algebra and trig.

          But thanks for your input.

          • ... If it's non-trivial, that is. A lot of algebra (and to a lesser extent, trigonometry) don't need pencil and paper OR a calculator, for that matter.
          • Er ... I included four years of calculus, linear algebra, and number theory in my undergrad degree and never touched a calculator. There was no need. I did use computation tools in some engineering courses but the emphasis was on numbers more than math theory.

            And you are welcome. ;-)

            Cheers

            • I wsn't claiming that it was necessary; only that it is convenient and CAN be used without compromising your education.

              They might not often be properly used that way, but they can be.
    • Also there exist a number of HP emulations but I don't know if there are any for TI.

      Try Andy Graph [google.com]. It fully emulates a TI-82 -> TI-86 calculator. I stopped using my real TI calculator after I got this app.
      It used to be called Andy-86, but unfortunately doesn't come with TI ROMs anymore.

  • Anger management (Score:3, Insightful)

    by six025 ( 714064 ) on Friday December 14, 2012 @05:44PM (#42294071)

    This is not likely to be a popular comment around here, but seriously ...

    Waiting 4-5 seconds for a simple function to be graphed on its 96x64 screen just makes me want to hurl it at the wall.

    If this is a literal problem rather than a joke you may want to look at the reasons why you're so angry about waiting a few seconds. If you can't control this now you will very likely find life becomes quite challenging for you in the long run.

    Peace,
    Andy.

    • You insensitive clod: some of us have difficulty controlling our anger and turn green easily. Nuclear accidents happen and this is the result.

      I have difficulty waiting while a graphing calculator crunches numbers . . . crunch plot, crunch plot, crunch plot ad nauseum. I wouldn't hurl it at the wall because I think they are cute and it isn't their fault they are slow. . .

        but puny calculators do make me angry! You won't like my math when I'm angry.

    • by Twinbee ( 767046 )
      Latency can be a pain for far shorter times than that. It makes one feel disconnected with a device, and interrupts one's train of thought. Experimentation becomes a painful ordeal rather than what should be fun. Imagine if every time you clicked a tab in your browser, you had to wait 1 second before it became active. Yeah, didn't think you'd enjoy that.
  • by mykepredko ( 40154 ) on Friday December 14, 2012 @05:45PM (#42294099) Homepage

    My daughter is 17 and in the same boat you are and would have liked to use a PC for her Calculus/Functions but I pushed her back to the calculator (with the help of her teacher).

    This isn't a new question; I was in the last year of high school where slide rules were taught - everything you are asking about using a PC program instead of a calculator was given by us for using a calculator instead of a slide rule. I suspect that centuries ago, students complained about having to use an abacus and wanted to use a slide rule instead.

    I don't like the TI-8x (here in Ontario, they use the 83+) for a number of reasons, but:
    1. The Textbooks reference the TI gonkulator and show examples for the calculator.
    2. Teachers are familiar with it. Don't expect your teacher to be very helpful if you come back and ask something like, "I'm graphing 2sin(x + 45) on xxx under Ubuntu but the zeros don't show up where I think they should - can you help me?" Chances are the teacher will either be unwilling or unable to help you.
    3. You could bring in a Linux pad or netbook, but I doubt you'll be allowed to bring it into tests for reasons discussed in point 2. Teachers are suspicious of things that can possibly do more than the tools they expect.
    4. Calculators are incredibly useful tools. It's often easier to pull one out on your desk to test values than bring up a calc program on the PC (especially if you only have one display AND it can be a problem finding real estate on two screens sometimes). They're good things to be familiar with.

    Good luck, it's an interesting question and I'm looking forward to how other people answer,

    myke

    • by tibit ( 1762298 )

      EasyCalc [sourceforge.net] for Palm is quite nice. The most recent version runs on PocketPC, too, but I didn't use that one. Doesn't do CAS, but it is opensource, and you can compile it on your own and tweak it to your heart's content. It also runs on a reasonably modern platform, so you don't have to worry about the CPU being a dinosaur. I think it'll work on pretty much any Palm II and newer device IIRC. I've used it on a monochrome Handspring Visor. Came very handy for advanced strength of materials. I think at that time

    • by snadrus ( 930168 )
      The reason I was given in College was they didn't want any devices with memory so that we would need to know our own formulas. To use a TI Calculator, the teacher wanted to verify we wiped it before the tests.
  • A calculate doesn't have the same form factor as a laptop / desktop. You are going to want to take advantage of that additional space.

    A good deal of what you are asking for spreadsheets do. When you need more than that, throw me in as another vote for Sage to create something like a MathCad type environment. Also I agree bc is a good choice for quick and dirty manipulations.

  • For that TI-8x look and feel...

    I use Andi Graph. http://dougmelton.com/android/andie-graph/ [dougmelton.com] . It's free if you already own a TI calculator. If you don't, you are morally obligated to purchase a TI calculator so that you can say you've paid for the software. It is exactly like using a real TI-8x calculator except the buttons are not tactile.

    It runs faster than a real TI-8x on an HTC One V phone, which is a low-end ICS phone. If you want to run it on a PC, get the Android emulator from Google.

    If you don't hav

  • TI Basic will make you grateful for any other language you will ever program in no matter how much that other language sucks more than your favorite one.

    • My first programming course in High School taught me TI Basic. If I remember correctly, the course was titled "American History" or something like that, taught by the football coach.

  • Qalculate! (Score:4, Informative)

    by BlackPignouf ( 1017012 ) on Friday December 14, 2012 @06:21PM (#42294927)

    I loved my TI 89 before I left outside one rainy night.
    qalculate-gtk is my go to calculator on my linux boxes :
    http://qalculate.sourceforge.net/ [sourceforge.net]
    Don't let the website design scare you, it's a pretty decent calculator, and handles units very well (e.g. "10kWh to MJ")

  • I know you specifically mentioned for use with homework, but you'll probably not be allowed to bring a laptop to an exam, and even if you know how to solve the problems, lack of practice using the de-facto 'official' calculator might slow you down.

  • I assume you are looking for a Linux solution, but Microsoft Mathematics [microsoft.com] really deserves a mention. It's a free-as-in-beer software which has nice graphing features and a smart equation solver. Something between a basic calculator and hardcore tool like MATLAB.
  • If you actually need a CAS, don't putz around: get Mathematica.

    Its error output is incredibly obtuse and it is frankly a PITA to learn to program, but it is the golden standard of CASes for a reason.
  • You should check out SAGE: http://www.sagemath.org/ [sagemath.org] It is based on Python. It is a free open source alternative to Magma, Maple, Mathematica and Matlab, created at the University of Washington. It has a CAS that is on par with Mathematica, but it has a lot of capabilities that no other package has (especially in Algebra). SAGE is the most scientific package I know of, since everything is open source, so you can actually prove how accurate its results are by analyzing the code. You don't just enter a formu
  • I'd recommend GNU Octave [wikipedia.org] at http://www.gnu.org/software/octave/ [gnu.org]: it can deal with matrices and thus let you build up tables of functions. It also uses radians as the default angular measure for the trigonometric function, just as Xmaxima/Maxima does on Linux. However, you can easily write a function to convert degrees into radians:
    For Octave:
    function rads=ofdegrees(deg)
    rads=deg/180*pi;

    and similarly, in XMaxima, you can do the conversion as a function definition also:
    indegrees(x) := x/180*pi;

    Th
  • I use the "gp" calculator which is a programmable front-end to the PARI library of functions. See https://en.wikipedia.org/wiki/PARI/GP [wikipedia.org]

    It's great for number theory and discrete math. I primarily use it for cryptography. My TI 86 and TI 89 used to be sitting on my desk at all times but after I discovered gp I don't have any use for them.

  • That plus gnuplot.
    What more could you want.

  • zenzen% python3
    Python 3.2.3 (default, Oct 19 2012, 20:10:41)
    [GCC 4.6.3] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> from math import *
    >>> pi
    3.141592653589793
    >>> sin(pi/2)
    1.0
    >>>
    an hour with pygame would probably give you a graphing module.
  • Realistically, CAS functionality is easier on paper and do you really need graphing? If you actually know what you are doing, pen, paper and a 15 year old Casio scientific is enough for pretty much everything. Failing that, grab a TI Nspire CAS. Very fast, does more than a TI84 or TI89. I use an HP50g myself but that's a different beast and my primary use case is RPL. Don't use a computer - you can't just grab it, use it and put it down.
  • A whole 5 seconds for a graph to be plotted. My god, I'm surprised you've been able to keep your temper in check. Having a violent fit and throwing your calculator across the room is the reasonable, adult response.

    First world problem.

  • http://www.bcs1.org/webpages/hsmath/ti-84.cfm [bcs1.org]

    I've not used it yet but I did grab the files.

  • and not a programming environment, there are a buncha TI (and other calculator) emulators. For example:

    http://www.zophar.net/ti.html [zophar.net]
    http://www.ticalc.org/archives/files/fileinfo/84/8442.html [ticalc.org]

    Personally, I'd just open up a spreadsheet program. If you need an algebraic equation solver, go with R, Matlab or possibly Mathomatic:
    http://www.mathomatic.org/math/ [mathomatic.org]

Two can Live as Cheaply as One for Half as Long. -- Howard Kandel

Working...