Math Is Fun Forum

  Discussion about math, puzzles, games and fun.   Useful symbols: ÷ × ½ √ ∞ ≠ ≤ ≥ ≈ ⇒ ± ∈ Δ θ ∴ ∑ ∫ • π ƒ -¹ ² ³ °

You are not logged in.

#1 2007-05-01 17:45:26

MathsIsFun
Administrator
Registered: 2005-01-21
Posts: 7,711

Mathematica 6 Released

Wolfram have just released Mathematica 6

http://www.wolfram.com/products/mathematica/index.html


"The physicists defer only to mathematicians, and the mathematicians defer only to God ..."  - Leon M. Lederman

Offline

#2 2007-05-05 01:36:26

Anthony.R.Brown
Banned
Registered: 2006-11-16
Posts: 516

Re: Mathematica 6 Released

Mathematica 6! as far as I know has the same Fault as all the other Versions!

it thinks Infinite/Recurring 0.9 equals 1

A.R.B

Offline

#3 2007-05-08 03:21:26

mathsyperson
Moderator
Registered: 2005-06-22
Posts: 4,900

Re: Mathematica 6 Released

Ugh. Not this again.

Mathematica 6 thinks that 0.999... = 1 because it was programmed by some mathematicians, who also think that 0.999... = 1.
They think this because there are many proofs to support the statement and no contradictions that can't be shown to have flaws.

Now, this topic is meant to be for discussing Mathematica 6. If you want to bring up this debate again, please do so in the proper topic.


Why did the vector cross the road?
It wanted to be normal.

Offline

#4 2007-05-11 18:49:50

George,Y
Member
Registered: 2006-03-12
Posts: 1,379

Re: Mathematica 6 Released

Well, mathematica has many other flaws beyond that. For example, after certain calculations of trig, it may give out a result like 3.6+0.000000000000001I. It may seem harmless so long that you know that it has applied sin to sinh, real to complex transformation, but it does cause trouble when ploting the function over more than one period. Besides, the Aspect Ratio thing and the Artificial Art-sense is handicapping, to think it cannot plot the whole curve up under real ratio just because the curve is tooooooooooooo flat ?!!


X'(y-Xβ)=0

Offline

#5 2007-05-15 05:44:04

Anthony.R.Brown
Banned
Registered: 2006-11-16
Posts: 516

Re: Mathematica 6 Released

As I said before a Better Program would be an Unbiased program that just Calculates! according to the Question put to it! i.e to think in an Unbiased way!

Below is a program wrote in the Basic Computer Language! that does exactly what it is asked! i.e Calculate Infinite/Recurring 0.9 with no end! ever!................


10 N = 0.9
20 INPUT " PRESS ENTER " ; START
30 PRINT ; N
40 GOTO 10


A.R.B

Last edited by Anthony.R.Brown (2007-05-17 01:32:56)

Offline

#6 2007-05-15 09:37:59

MathsIsFun
Administrator
Registered: 2005-01-21
Posts: 7,711

Re: Mathematica 6 Released

That would print "0.90.90.90.9..." wouldn't it?


"The physicists defer only to mathematicians, and the mathematicians defer only to God ..."  - Leon M. Lederman

Offline

#7 2007-05-16 01:42:29

Anthony.R.Brown
Banned
Registered: 2006-11-16
Posts: 516

Re: Mathematica 6 Released

To MathsIsFun

Quote " That would print "0.90.90.90.9..." wouldn't it? "

A.R.B

It depends on the version of "BASIC" used!! as is always the way with Computer languages!
some remove the Zero and keep repeating the .9 which is what it should do!
but I dont have a problem with any version printing  Infinite/Recurring 0.9 or .9 both have the same Value! the main point is that the Values printed are never ending!! i.e Infinite/Recurring!
The way you have showed it is wrong! "0.90.90.90.9..." with no Breaks! it should be .........

0.9
0.9
0.9

or

.9
.9
.9

Both are the Same!!

Offline

#8 2007-05-17 00:25:48

Anthony.R.Brown
Banned
Registered: 2006-11-16
Posts: 516

Re: Mathematica 6 Released

Below is my Infinite/Recurring 0.9 QBASIC Computer program!

To Run the program copy/paste and then save the file as INFREC09.BAS or INFREC09.TXT
then open the program in the QBASIC program's window to Run.

If you dont have a copy of the QBASIC program,it can be download for Free from

http://members.lycos.co.uk/brisray/qbasic/qind.htm 


A.R.B


REM ************************************************************************
DIM TIMES AS SINGLE
DIM DECIMALPOINT AS STRING
DIM NINE AS STRING
DIM COUNT AS SINGLE
DIM RUNAGAIN AS STRING
CLS
PRINT
PRINT " INFINITE/RECURRING 0.9 QBASIC PROGRAM,By Anthony.R.Brown 17/05/07 "
PRINT
INPUT " ENTER HOW MANY TIMES TO RUN! THEN PRESS < ENTER > "; TIMES
PRINT : PRINT
DECIMALPOINT = "."
NINE = "9"
PRINT ; DECIMALPOINT;
NINES:
PRINT ; NINE;
COUNT = COUNT + 1
IF COUNT = TIMES THEN GOTO ENDOFRUN
GOTO NINES
ENDOFRUN:
PRINT : PRINT
PRINT " THE PROGRAM WILL RUN AN INFINITE/RECURRING AMOUNT OF TIMES! "
PRINT " IF YOU JUST PRESS < ENTER > FOR HOW MANY TIMES TO RUN! "
PRINT : PRINT
INPUT " PRESS < ENTER > TO RUN AGAIN "; RUNAGAIN
PRINT : PRINT
RUN
END
REM ************************************************************************

Offline

Board footer

Powered by FluxBB