I have a sub-ode in a larger system that I am working with. It takes the form of
$$y' = a-b\frac{y}{x}$$ $$x'=c\frac{y}{x}-d$$
I've been looking around for solutions since I do not know of a general method for non-linear coupled ODEs. Does anyone have some intuition about the above system. It seems like there must exist a nice solution since $\frac{y}{x}$ appears in both equations.
Thanks!
Edit: This is under a known constraint that $x+y=C$
Edit 2: In the actual problem $b=c$.
Hint: notice that
$$y'+\frac{b}{c}x' = a-\frac{bd}{c} \implies bx+cy = (ac-bd)t+k$$
$\textbf{EDIT}$: With the edits we can simplify the equation to
$$x' = \frac{bC-(a+b)x}{x}$$
which is separable. It has a solution of
$$\frac{bC}{(a+b)^2}\log(bC-(a+b)x) + \frac{x}{a+b} = K-t$$
where $K$ is the constant of integration.