How can I find the maximum and minimum of a Parabola polynom using Java?

  • Thread starter Thread starter LSDwhat?
  • Start date Start date
  • Tags Tags
    Max
Click For Summary
To find the maximum and minimum of a parabola defined by the polynomial ax² + bx + c within a given interval [x1, x2], first identify the vertex using the formula x = -b/(2a). If this vertex lies within the interval, evaluate the function at the vertex and at the endpoints x1 and x2. The maximum and minimum values can then be determined by comparing the function values at these points. It's important to understand that the maximum or minimum occurs either at the vertex or at the boundaries of the interval. Graphing the function can also provide insight into its behavior and the location of extrema.
LSDwhat?
Messages
13
Reaction score
0
I need to make to functions in java that gives the maxim and minin of the Parabola polynom ax2+bx+c for an interval of two given points.

I have no Idea how to make this algorithm , could you help ?

I have come to something like this :
if (-b/(2*a)>=x1 && -b/(2*a)<=x2)
return (-b/(2*a));
 
Physics news on Phys.org
LSDwhat? said:
I have no Idea how to make this algorithm , could you help ?
Figure out the math first, then worry about how to program it.
 
Hurkyl said:
Figure out the math first, then worry about how to program it.

I don't know the math that's why I'm asking. I don't want the java code.
 
Well, what do you know about finding minima and maxima?

Alternatively, what do you know about the shape of the graphs of parabolas?
 
Hurkyl said:
Well, what do you know about finding minima and maxima?

Alternatively, what do you know about the shape of the graphs of parabolas?

well the maxima should be the value of Y which is the bigger to a value of X and the minima the same.

About the shape its sinusoidal waves.
 
LSDwhat? said:
well the maxima should be the value of Y which is the bigger to a value of X and the minima the same.

About the shape its sinusoidal waves.

Careful, you are mixing apples and oranges. The max(min) will be the value of Y which is bigger(smaller) than every other value of Y for some region around your max(min) value.

Not X like you said, X is the input variable that determines your Y.

You should try graphing ax^2 + bx + c for various values of a, b, and c to verify if it has "sinusoidal waves."

that also might give you some intuition into the the max(min) of a parabola
 
Theorem: If E ⊂ R and f: E → R, and f has a maximum or minimum at x ∈ E, then one of the following three is true:
(1) x is a boundary point of E,
(2) f'(x) = 0, or
(3) f is not differentiable at x.

In your case, f(x) = ax2 + bx + c and E is the interval [x1, x2]. Then the only possibilities are these: (1) x is one of the boundary points x1 or x2 of E, or (2) f'(x) = 2ax + b = 0, so x = -b/2a. Look at the values of f at those three points; the largest one is the maximum, and the smallest one is the minimum.
 

Similar threads

Replies
2
Views
2K
Replies
3
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
Replies
4
Views
12K
  • · Replies 13 ·
Replies
13
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
Replies
30
Views
3K
Replies
6
Views
2K