Mathematica Equation Solving

364 Views Asked by At

Suppose I wanted to solve the following for $a[1], a[2], a[3]$ in the Mathematica code:

(a[1]+a[3])*t+(a[1]+2*a[2])*t^2=0

with $a[1] = 1$ where $t$ is just a variable and the equation above is identically 0. How would I automate this in Mathematica to get $a[3] = -1, a[2] = -1/2$?

2

There are 2 best solutions below

0
On BEST ANSWER

In general, you can do it this way:

a[1] = 1; 
Solve[# == 0] & /@ 
 CoefficientList[(a[1] + a[3])*t + (a[1] + 2*a[2])*t^2, t]

Out[1] = {{{}}, {{a[3] -> -1}}, {{a[2] -> -(1/2)}}}

What the above does is it first collects the coefficients of the polynomial using CoefficientList and passes them to Solve which solves each of them.

4
On

This will do it:

a[1] = 1; Solve[{a[1] + a[3] == 0, a[1] + 2*a[2] == 0}, {a[2], a[3]}]