What do you mean by "compute"? Do you want to graph it? Factor it? Calculate it's function given a set of points that lie on it?
If you're looking to compute the function given three points that fall on the parabola, then I have just the code for you. If you're given three points, (x1, y1), (x2, y2) and (x3, y3), then you can compute the coefficients of your quadratic equation like this:
a = (y1 * (x2 - x3) + y2 * (x3 - x1) + y3 * (x1 - x2)) / (x1 * x1 * (x2 - x3) + x2 * x2 * (x3 - x1) + x3 * x3 * (x1 - x2))
b = (y1 - y2) / (x1 - x2) - a * (x1 + x2);
c = y1 - (x1 * x1) * a - x1 * b;
You now can calculate the y co-ordinate of any point given it's x co-ordinate by saying:
y = a * x * x + b * x + c;
Chat with our AI personalities
public class QuadraticEquation { publicstatic void main(String args[]){ for(int x =0 ; x
J2EE stands for Java 2 Enterprise Edition. It is used to create enterprise class web applications that can be used by large enterprises and corporations. Most websites of major companies are created using j2ee. Some of the technologies used in J2ee are: a. Struts b. Hibernate c. JSP d. Servlets e. Spring f. etc Whereas Advanced Java refers to the advanced topics of java that can be used in regular java programs. Some topics under Advanced Java are: a. Exception Handling b. Threading/Multi-Threading c. Remote Method Invocation d. Serialization e. etc
The Java Integer class is there to help with math. It is very useful and very recommended. To learn more information about it, go to the official Java page.
where to start? do you have an algorithm and just want to implement it in java? depends on how big N is, as that will determine which method is most efficient
Because Java takes only string values