I need to define an equation stating that the sum of n
operations involving n
2D vectors and n
scalars yields zero, where n
is an arbitrary integer greater than 1.
For example, think of it as Sum[(v_i + t)*(Norm[v_i+t]-L_i), {i, 1, n}] == 0
where v_i
are the n
2D vectors, t
is the unknown (which is also a 2D vector), and L_i
are the n
scalars.
How should I define the v_i
vectors and the L_i
scalars so that I can best index them from the sum operator? Note that the Norm[]
operator is used, so Mathematica needs to know vectors are 2D, and that scalars are scalars (i.e. I just cannot define the equation like if all variables were scalars and understand them as vectors in an abstract way).