How do I find the intersection of two lines in maple when plotted as follows:
a:=line([1,-1,-1],[0,0,1]):
b:=line([1,1,1],[0,-1,0]):
I attempted to use the intersection command but it returned this:
intersection(CURVES([[1., -1., -1.], [0., 0., 1.]]), CURVES([[1., 1., 1.], [0., -1., 0.]]))
Thanks very much for any help
line’s first argument is the name of the line you are symbolically defining.
Instead of using
Try the following instead:
See the help on intersection and line for more detail.