Risposta: # 2x ^ 3 + 13x ^ 2 + 20x + 16 # Spiegazione: Dobbiamo espandere un gruppo: # (x + 2) ^ 2 = x ^ 2 + 4x + 4 # # (x + 4) ^ 2 = x ^ 2 + 8x + 16 # Sostituendo questi: # 3x (x ^ 2 + 4x + 4) -x ^ 3 + x ^ 2 + 8x + 16 # distribuzione: # 3x ^ 3 + 12x ^ 2 + 12x-x ^ 3 + x ^ 2 + 8x + 16 # raccogliere termini simili: # 2x ^ 3 + 13x ^ 2 + 20x + 16 #