Kelly O. answered 12/04/20
Specializing in Computer Science, C++, Java, x86 assembly and more
To rewrite (11x+3)/8 as a sum or difference we need to split the numerator into two parts, and put each over the denominator. The problem currently says that the entire numerator (11x+3) is being divided by 8. Therefore it is equivalent to (11x)/8 + 3/8. Since neither 11 or 3 is divisible by 8, this is the final answer.