The problem I am given is finding a solution to the following pair of equations:
$3x + 4y$ $\equiv$ $5$ $mod$ $13$
$2x + 5y$ $\equiv$ $7$ $mod$ $13$
By reading the methodology here: How do you solve linear congruences with two variables.
Since the modulos in my problem are also the same, I am able to use substitution, but this leaves fractions in my expressions.
I then used matrix multiplication as follows:
$\begin{bmatrix} 3 & 4\\ 2 & 5\end{bmatrix}$ $\begin{bmatrix}\ x\\ y\end{bmatrix}$ = $\begin{bmatrix}\ 5\\ 7\end{bmatrix}$
And solving this also gives me a matrix with fractions, so I am a bit lost on how to solve this problem.
Any help is appreciated. Thank you very much.