Name:
Anonymous
2013-02-26 16:30
Does there exist a valid mathematical expression that cannot be represented as an sexpr?
Name:
Anonymous
2013-02-26 16:48
No.
A better question: Does there exist anything finite that cannot be represented as an S-expression?
Name:
Anonymous
2013-02-26 18:35
How do I use S-expressions to represent the process to integrate the determinate of a 5x5 matrix from 0 to x?
Name:
Anonymous
2013-02-26 19:03
>>2
I was gonna say circular data structures but then it 504'd
Name:
Anonymous
2013-02-27 0:09
>>4
(integrate 0 4 (det (matrix))
Name:
Anonymous
2013-02-27 1:06
You don't even need macros man.
(lambda (x)
(integrate (interval 0 x)
(lambda (t)
(det (matrix t)))))