I was solving a characteristic equation for matrix eigenvalue problem. I had this equation, where $c$ is eigenvalue.
$$(1 - c)[(2 - c) ^ 2 - 9] = 0$$
In the book they equated both the terms to zero, like this
$$(1 - c) = 0$$
$$[(2 - c) ^ 2 - 9] = 0$$
And find out $c = 1, 5, -1$.
I am unable to understand how they can equate both terms to zero like this?
When you have a product of terms that is $0$, like $ab=0$, you know that at least one of $a,b$ is $0$. They break it apart into two equations but you only know that at least one is true. You solve each equation and the solution set of the original is the union of the solution sets of the separated equations. Here the first gives $c=1$ and the second gives $c \in \{5,-1\}$. The solution to the original is then $c \in \{1,5,-1\}$