I have a vector v defined as follows:
v[x_] = {0.5, 0., x}
I calculate its norm, and expect for it to be Sqrt[0.25+x^2]. But instead I get a number:
Norm[v]
1.71202
I also tried Norm[v[x]], but that gives Norm[{1.71202, 0}[x]]. What should I do so that I get Sqrt[0.25+x^2] as the answer?
Clear[v]and try again. – J. M.'s missing motivation Sep 03 '17 at 21:25