Wie finde ich die Umkehrfunktion für eine quadratische Gleichung?

Wie finde ich die Umkehrfunktion für eine quadratische Gleichung?
Anonim

Antworten:

# "Siehe Erklärung" #

Erläuterung:

#y = f (x) = x ^ 2 + 6x + 14 #

# "Es gibt zwei Methoden, denen eine folgen kann." #

# "1) Das Quadrat ausfüllen:" #

#y = (x + 3) ^ 2 + 5 #

# => pm sqrt (y - 5) = x + 3 #

# => x = -3 pm sqrt (y - 5) #

# => y = -3 pm sqrt (x - 5) "ist die Umkehrfunktion." #

# "Für" x <= -3 "nehmen wir die Lösung mit - Zeichen." #

# => y = -3 - sqrt (x-5) #

# "2) Ersetzen von" x = z + p "mit" p "eine konstante Zahl" #

#y = (z + p) ^ 2 + 6 (z + p) + 14 #

# = z ^ 2 + (2p + 6) z + p ^ 2 + 6p + 14 #

# "Nun wähle" p "so dass" 2p + 6 = 0 => p = -3. #

# => y = z ^ 2 + 5 #

# => z = pm sqrt (y - 5) #

# => x = -3 pm sqrt (y - 5) #