Concept:
- Any equation of the form $a(x - p) = b(x + q)$ can be solved with one general formula instead of expanding fresh each time: $x = \frac{bq + ap}{a - b}$.
- This formula comes directly from expanding once and rearranging, and it can be reused for any equation written in this shape.
Step 1: Match the given equation to the general shape $a(x-p) = b(x+q)$.
$4(x-2) = 3(x+5)$ gives $a = 4$, $p = 2$, $b = 3$, $q = 5$.
Step 2: Derive the formula once, in general.
$ax - ap = bx + bq$
$ax - bx = bq + ap$
$x(a - b) = bq + ap$
$x = \frac{bq + ap}{a - b}$
Step 3: Substitute the matched values into the formula.
$x = \frac{(3)(5) + (4)(2)}{4 - 3} = \frac{15 + 8}{1}$
Final Answer: $x = 23$