|
|
Up |
|
|
  |
Author: Vladimir BondarenkoVladimir Bondarenko Date: Jul 11, 2007 16:57
A Review of Mathematica by Richard J. Fateman, UC Berkeley
http://www.cs.berkeley.edu/~fateman/papers/mma.review.pdf
The Mathematica computer system is reviewed from the perspective
of its contributions to symbolic and algebraic computation, as
well as its stated goals.
Design and implementation issues are discussed.
|
| |
|
| | 14 Comments |
|
  |
Author: Steven SiewSteven Siew Date: Jul 11, 2007 18:12
On Jul 12, 9:57 am, Vladimir Bondarenko cybertester.com> wrote:
> A Review of Mathematica by Richard J. Fateman, UC Berkeley
>
> http://www.cs.berkeley.edu/~fateman/papers/mma.review.pdf
>
> The Mathematica computer system is reviewed from the perspective
> of its contributions to symbolic and algebraic computation, as
> well as its stated goals.
>
> Design and implementation issues are discussed.
Damn it! You should have warned us. This review is 15-16 years old!
How about some recent reviews.
I'm not interested in a review of Mathematica 1.2
|
| |
|
| | no comments |
|
  |
Author: dimitrisdimitris Date: Jul 12, 2007 07:36
Steven Siew :
> On Jul 12, 9:57 am, Vladimir Bondarenko cybertester.com> wrote:
>> A Review of Mathematica by Richard J. Fateman, UC Berkeley
>>
>> http://www.cs.berkeley.edu/~fateman/papers/mma.review.pdf
>>
>> The Mathematica computer system is reviewed from the perspective
>> of its contributions to symbolic and algebraic computation, as
>> well as its stated goals.
>>
>> Design and implementation issues are discussed.
>
> Damn it! You should have warned us. This review is 15-16 years old!
>
> How about some recent reviews.
>
> I'm not interested in a review of Mathematica 1.2
|
| Show full article (0.82Kb) |
| no comments |
|
  |
Author: dimitrisdimitris Date: Jul 12, 2007 07:38
Steven Siew :
> On Jul 12, 9:57 am, Vladimir Bondarenko cybertester.com> wrote:
>> A Review of Mathematica by Richard J. Fateman, UC Berkeley
>>
>> http://www.cs.berkeley.edu/~fateman/papers/mma.review.pdf
>>
>> The Mathematica computer system is reviewed from the perspective
>> of its contributions to symbolic and algebraic computation, as
>> well as its stated goals.
>>
>> Design and implementation issues are discussed.
>
> Damn it! You should have warned us. This review is 15-16 years old!
>
> How about some recent reviews.
>
> I'm not interested in a review of Mathematica 1.2
Considering how complex systems are Mma and Maple
I don't think it is an easy task a complete review of them.
|
| Show full article (0.75Kb) |
| no comments |
|
  |
Author: Mike MMike M Date: Jul 12, 2007 08:22
>A Review of Mathematica by Richard J. Fateman, UC Berkeley
>
> http://www.cs.berkeley.edu/~fateman/papers/mma.review.pdf
>
> The Mathematica computer system is reviewed from the perspective
> of its contributions to symbolic and algebraic computation, as
> well as its stated goals.
>
> Design and implementation issues are discussed.
As far as I am concerned, Mathematica is the greatest invention since sliced
bread!
If you know of a better multi-purpose software system, please name it.
Mike M
|
| |
| no comments |
|
  |
Author: Ivar RosquistIvar Rosquist Date: Jul 12, 2007 09:19
On Thu, 12 Jul 2007 08:22:13 -0700, Mike M wrote:
>>A Review of Mathematica by Richard J. Fateman, UC Berkeley
>>
>> http://www.cs.berkeley.edu/~fateman/papers/mma.review.pdf
>>
>> The Mathematica computer system is reviewed from the perspective of its
>> contributions to symbolic and algebraic computation, as well as its
>> stated goals.
>>
>> Design and implementation issues are discussed.
>
>
> As far as I am concerned, Mathematica is the greatest invention since
> sliced bread!
> If you know of a better multi-purpose software system, please name it.
> Mike M
|
| Show full article (0.77Kb) |
| no comments |
|
  |
Author: quasiquasi Date: Jul 12, 2007 10:25
On Thu, 12 Jul 2007 08:22:13 -0700, "Mike M"
comcast.net> wrote:
>>A Review of Mathematica by Richard J. Fateman, UC Berkeley
>>
>> http://www.cs.berkeley.edu/~fateman/papers/mma.review.pdf
>>
>> The Mathematica computer system is reviewed from the perspective
>> of its contributions to symbolic and algebraic computation, as
>> well as its stated goals.
>>
>> Design and implementation issues are discussed.
>
>
>As far as I am concerned, Mathematica is the greatest invention since sliced
>bread!
>If you know of a better multi-purpose software system, please name it.
|
| Show full article (0.89Kb) |
| no comments |
|
  |
Author: Herman RubinHerman Rubin Date: Jul 12, 2007 11:28
In article comcast.com>,
Mike M comcast.net> wrote:
>>A Review of Mathematica by Richard J. Fateman, UC Berkeley
>> The Mathematica computer system is reviewed from the perspective
>> of its contributions to symbolic and algebraic computation, as
>> well as its stated goals.
>> Design and implementation issues are discussed.
>As far as I am concerned, Mathematica is the greatest invention since sliced
>bread!
>If you know of a better multi-purpose software system, please name it.
>Mike M
Was sliced bread such a great invention? It is much
harder to get good bread since it came out.
|
| Show full article (1.77Kb) |
| no comments |
|
  |
Author: rjfrjf Date: Jul 12, 2007 13:44
I agree with Herman Rubin on the importance of notation, but I think
we disagree on what that notation should be.
Here is an example. (better set your news reader to fixed-width
font...)
A formula that is part of Filon quadrature, written in infix.
How clear is it compared to the 3 choices written in prefix (lisp) ,
below?
Which is equivalent?
beta= 2*((1+cos(theta)^2)/theta^2 -sin(2*theta)/theta^3),
;; is this a difference of two items? [a]
(setf beta (- (* 2 (/ (+ 1 (expt (cos theta) 2)) (expt theta 2)))
(/ (sin (* 2 theta)) (expt theta 3))))
;; or is it a product of 2 times the difference of two items? [b]
(setf beta (* 2 (- (/ (+ 1 (expt (cos theta) 2)) (expt theta 2))
(/ (sin (* 2 theta)) (expt theta 3)))))
;; or is it a quotient of a difference divided by theta^3? [c]
|
| Show full article (1.50Kb) |
| no comments |
|
  |
|
|
  |
Author: Joe RielJoe Riel Date: Jul 12, 2007 14:50
rjf gmail.com> writes:
> I agree with Herman Rubin on the importance of notation, but I think
> we disagree on what that notation should be.
>
> Here is an example. (better set your news reader to fixed-width
> font...)
>
>...
|
| Show full article (1.43Kb) |
| no comments |
|
|
|
|