Svar: # 2x ^ 3 + 13 x ^ 2 + 20x + 16 # Forklaring: Vi må utvide en haug: # (x + 2) ^ 2 = x ^ 2 + 4x + 4 # # (x + 4) ^ 2 = x ^ 2 + 8x + 16 # Bytte disse: # 3x (x ^ 2 + 4x + 4) -x ^ 3 + x ^ 2 + 8x + 16 # distribusjon: # 3x ^ 3 + 12x ^ 2 + 12x-x ^ 3 + x ^ 2 + 8x + 16 # samle inn lignende vilkår: # 2x ^ 3 + 13 x ^ 2 + 20x + 16 #