Antwoord: toppunt# -> (x, y) -> (- 2,11) # Symmetrie-as # -> x _ ("vertex") = -2 # Uitleg: Standaard vorm # Y = ax ^ 2 + bx + c # Schrijf als # Y = a (x ^ 2 + b / ax) + c # #x _ ("vertex") = (-1/2) xx b / a # Dus voor je vraag #x _ ("vertex") = (- 1/2) xx ((- 8) / (- 2)) = -2 # Het substitueren # X = -2 # geeft #y _ ("vertex") = - 2 (-2) ^ 2-8 (-2) +3 = -8 + 16 + 3 = 11 #