I have three matrices $A_{p\times q},B_{q\times r},C_{r\times s}$ such that $ABC=M_{p\times s}$ and dimensions of matrices are {$p,q,r,s$}
I am increasing value of $r$ from $2$ to $100$ it means adding one column in B and adding one row in C(means I am adding one row and one column at a time not adding $98$ columns and rows at once). Right now when I increase the value r and thus making $B \rightarrow B_{1}$ and $C \rightarrow C_{1}$, I get $AB_{1}C_{1}$ which is obviously $AB_{1}C_{1} \neq ABC$. How can I modify $B, C$ such that $AB_{1}C_{1} = ABC = M_{p\times s}$.