Chat with our AI personalities
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;
The derivative of a function is another function that represents the slope of the first function, slope being the limit of delta y over delta x at any two points x1,y1 and x2,y2 on the graph of the function as delta x approaches zero.
In general, it is linear if it is of the form a1x1 + a2x2 + ... + anxn + a0 = 0where a1, a2, ... an and a0 are constants, and x1, x2, ... , xn are variable.If there are only two variables then usually x1 = x and x2 = y.
i think its pretty much the same thing because matrix X1 X2 IS ACTUALLY X1 X2
Suppose you have a function y = f(x) which has an inverse. Therefore there exists a function g(y) such that g(y) = x whenever y = f(x). Now suppose a line parallel to the x axis, y = k (some constant), intersects the graph of y = f(x) at more than one point: say x1 and x2. That means that k = f(x1) and k = f(x2). Now, in the context of the function g, this means that [from the first intersection] g(k) = x1 and [from the first intersection] g(k) = x2 But the function g cannot map k to two different points. That is the contradiction which precludes the possibility of a horizontal line intersecting an invertible function more than once.