I have a system of three equations I am trying to solve using Runge-Kutta method. Here are the equations and the boundary conditions. I want to find $X(t), Y(t) and Z(t)$ in $t=[t_0,t_f]$ interval. I only have the initial value of $X(t)$ and the relation between $Y(t)$ and $Z(t)$ at the boundaries. the other constants such as $A, a, a_1, b, b_1, c, c_3, d ...$ are all known values. How can I solve them?
The equations:
$X'(t)=\frac{a \times X(t) (-a_1-(A \times b_1 - b \times c_3 \times (Z(t) + Y(t)))}{(A + c \times X(t) + d (Z(t) + Y(t))))};$
$Y'(t)=\frac{b \times Y(t) (-a_2-(A\times b_2 + a \times c_3 \times X(t))}{(A + c \times X(t) + d (Z(t) + Y(t))))};$
$Z'(t)=\frac{b \times Z(t)( a_2+(A \times b_2 + a \times c_3 \times X(t))}{(A + c \times X(t) + d (Z(t) + Y(t))))};$
Boundary conditions:
$X(t_0)=10\times 10^{-3};$
$Y(t_0)=0.9\times Z(t_0);$
$Z(t_f)=0.8\times Y(t_f);$