The book is now explaining the multiplicative inverses in modular arithmetic, how if a number s has an inverse,t,modulo n, then it follows that $s*t≡ 1$mod(n).
From that definition the book shows that there are some numbers in certain modulos that have inverses for example 8's inverse is 2 in mod(15).
However, it also shows that there are numbers which don't have an inverse, for example 3 in mod(15). The book proves it doing this:
Suppose j is the inverse of 3 mod(15).
$$3j ≡ 1 mod(15)\implies 5*3j≡5mod(15)$$ Since the remainders of each side of the modulo equation is the same: $$rem(15j,15)=rem(5,15)$$ And from this we have $0=5$ a contradiction.
From this I have this question, if I multiply both sides by 15, would it be the same as in a normal equation multiplying by 0 and then not proving anything?