1

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."

Sektor
  • 3,320
  • 7
  • 27
  • 36
mentics
  • 121
  • 4

1 Answers1

1

Well, I'm not sure if the syntax I used is supposed to work for the set of equations, but if I switch to using && between the equations, it appears to work fine:

$Assumptions = (p | q | u | v | a | b) \[Element] Vectors[3, Reals]
    $Assumptions = (t | k) \[Element] Reals
Reduce[
 1/2*a*t^2 + u*t + p == 1/2 * b * t^2 + v*t + q &&
  Norm[a] == k, {a, t}, Reals]
mentics
  • 121
  • 4