It might be a simple question but I couldn't find it via google, so I might not use the right terms.
Say I have two measurement values $P$ and $Q$. $P$ has 7 bits of resolution and $Q$ has 6 bits. So P can have all values from 0 up to $2^7 -1$, and Q can have all values from 0 up to $2^6 -1$.
Now I calculate a derived value $R$ through $R = aP + bQ + c$, a, b and c are constants.
How many bits of resolution does $R$ have? $\min(6,7)$, $\max(6,7)$ or $6 + 7$?
I know that $R$ can have $2^{13}$ different values, but are the least significant bits really... significant? Can I actually make decisions based on those bits?