I tried to solve the following set of equations $$- v_+ = C_1 \sinh (C_2) \\ -v_+ = \sinh(-s_+ q + C_2), $$ where $v_+$, $s_+$ and $q$ are constants and I try to solve for $C_1$ and $C_2$ using this code line - Solve[-vplus == C*sinh[B] && -vplus == C*sinh[-S*q + B], {C, B}] But I get this message - Inverse functions are being used by Solve, so some solutions may not \ be found; use Reduce for complete solution information
How can I use Reduce here to get complete solution?