← Back to Test

Problem 9 - Entrance Test

Expand (m - 2n)^3.

Correct: B

Using the identity (a-b)^3 = a^3 - 3a^2b + 3ab^2 - b^3, here a = m and b = 2n. (m - 2n)^3 = (m)^3 - 3(m)^2(2n) + 3(m)(2n)^2 - (2n)^3 = m^3 - 3(m^2)(2n) + 3(m)(4n^2) - 8n^3 = m^3 - 6m^2n + 12mn^2 - 8n^3.