Page 2: Method Implementations
The second page focuses on the implementation of various methods used in the program.
Key methods include:
programmkopf(): Prints the program header.berechneYWert(): Calculates the y-value for a given x-value.berechneScheitelpunktXS(): Computes the x-coordinate of the vertex.berechneScheitelpunktYS(): Calculates the y-coordinate of the vertex.istPunktAufParabel(): Checks if a point lies on the parabola.
Example: The
berechneYWertmethod calculates the y-value using the formula y = ax² + bx + c.
Highlight: These methods showcase how to add Java mathematics to programs, demonstrating the language's capability for complex calculations.
Quote: "Punkt ist auf Parabel" (Point is on the parabola) - This output indicates when a point lies on the parabola.
Vocabulary: Scheitelpunkt - The German term for vertex, the highest or lowest point of a parabola.




