You've tripped over the difference between range variables and vectors. You defined a range variable
x:= 0, 0.001, . . 1
That's valid, but x is NOT a vector. (Range variables are mostly used for plotting; there's an undocumented trick that can be used to make them vectors, but it doesn't always give you what you thought.)
So when you typed the first expression for x1, Mathcad told you that x wasn't legal there. (It would have been if x was a vector.) So you created x1(x,m), which is a function and it works. Note that x1(x) would have worked too, since m is single-valued and already defined.
See if the attachment helps. Done in Prime 4, pdf shown
Hi, sorry I forgot to add the function F1 (x) to the beginning of the worksheet. Anyway, I attach the complete file. With what is provided, I think you can solve all your problems.