Tagged Questions
1
vote
2answers
192 views
distance between two curves
I try to compute the distance between two curves. I use the EuclideanDistance to do that.
Here my code:
...
9
votes
0answers
117 views
What is PointForm?
I stumbled across a function called PointForm but the only documentation I can find is the pop-up line offered by autocomplete, which contains the same information ...
5
votes
1answer
119 views
FunctionTreeForm
I'd like to implement a function FunctionTreeForm which takes an arbitrary complex function and renders all the captionable subfunctions in a TreeForm.
Explanation
If we take e.g. a function:
...
7
votes
1answer
224 views
Demonstrating Ackermann's Function
The Ackermann function is an extremely fast growing function. There are some slightly different versions of the function, but the one that I am looking for can be defined as:
$$
A_0(x)=x+1 \\
...