PDA

View Full Version : Math Programs


carterw
May7-04, 08:05 PM
Hi All,

Does Anyone know of any Math programs that are easy to use that I can download from the net.
What I am trying to do is organize a long string of digits in groups of three, add the groups, and subtract from each running total certain incremental values.

Thanks in Advance.

Dan

chroot
May7-04, 08:48 PM
Most sophisticated math software is not free.

From the sound of it, you should be able to write a simple program in the language of your choice to do what you need to do, without having to use any pre-existing software.

- Warren

carterw
May12-04, 07:35 PM
Thanks Warren,

I was able to do some significant things with microsoft Excel.
I am not very familiar with programming languages but would like to begin study. Would you have any suggestions as to the language that can be learned the fastest that can also handle math well?

Dan

chroot
May12-04, 07:52 PM
Well, MATLAB comes to mind -- but it's not free.

- Warren

carterw
May13-04, 08:13 PM
Hi Warren,

I heard that "Octave" is also free software and is also useful. I even have all the files unzipped in a folder. But it looks like a daunting task to learn how to install this.

Also. To learn a language like C++ or Basic; What kind of limitations might these have.

I am looking at writing a program that will search a broad spectrum of irrational numbers (roots of integers from zero up) - for certain patterns.
For example the string of the 2187th root of 2368 displays remarkable properties that I would like to investigate. But I need to determine to what extend these patterns are due to random distribution.

What kind of a language do you think would be adequate, and one in which I should invest time in learning?

Thanks,
Dan

chroot
May13-04, 08:23 PM
Well, neither C++ nor BASIC provide any actual math-related features; you'll have to code algorithms by hand. C++ is a much, much more useful language than is BASIC, so, on that merit alone, I suggest C++.

- Warren