Files
freeCodeCamp/curriculum/challenges/german/17-college-algebra-with-python/learn-linear-functions/linear-equations.md
freeCodeCamp's Camper Bot cc87f4455d chore(i18n,learn): processed translations (#54077)
Co-authored-by: Naomi Carrigan <nhcarrigan@gmail.com>
2024-03-25 16:31:40 +00:00

1.2 KiB

id, title, challengeType, videoId, dashedName
id title challengeType videoId dashedName
6331d28ab51aeedd1a2bd650 Lineare Gleichungen 15 u0bgovPh4ME linear-equations

--description--

In diesem Video erfährst du, wie du den y-Achsenabschnitt einer linearen Funktion findest, um die Gleichung vollständig aufstellen zu können. Anschließend zeigt dir das Video, wie du die ganze Funktion grafisch darstellen kannst. Du wirst auch sehen, wie du den gesamten Prozess mit Python-Code durchführen kannst.

Hier ist das Colab-Notizbuch zu den letzten beiden Videos, damit du die Formeln sehen kannst.

--assignment--

Füge deinem Algebra-Colab-Notizbuch Code hinzu, um eine Funktion anhand von Punkten oder einer Gleichungseingabe grafisch darzustellen.

--question--

--text--

If you know the slope ("m") and you have one (x,y) coordinate point, which of the following equations could you use to find "b", representing the y-intercept in Python?

--answers--

y = mx +b


b = y - m*x


ax + by = c


(y2-y1)/(x2-x1)=m

--video-solution--

2