I'm trying to solve a system of vector equations. I know this is solvable since I've done it myself by hand (I reduced it to solving the root of a quartic anyway). I'm trying to do it in Mathematica because I have another similar one I want to solve that I'm getting the same error for.
$Assumptions = (p | q | u | v | a | b) ∈ Vectors[3, Reals];
$Assumptions = (t | k) ∈ Reals;
Reduce[{{1/2 a t^2 + u t + p == 1/2 b t^2 + v t + q}, {Norm[a] == k}}, {a, t}];
Evaluating this shows:
Solve::naqs: "{p+(a\t^2)/2+t\ u==q+(b\t^2)/2+t\ v}&&{Norm[a]==k} is not a quantified system of equations and inequalities."
$Assumptionsoverwrites the first one. Sort of moot though because I'm pretty sureReducecant make any use of the vector assumption. – george2079 Jun 04 '15 at 21:12$Assumptionshere : Inequalities with assumptions and constraints. – Jens Jun 04 '15 at 21:36