answersLogoWhite

0

Still curious? Ask our experts.

Chat with our AI personalities

DevinDevin
I've poured enough drinks to know that people don't always want advice—they just want to talk.
Chat with Devin
ProfessorProfessor
I will give you the most educated answer.
Chat with Professor
FranFran
I've made my fair share of mistakes, and if I can help you avoid a few, I'd sure like to try.
Chat with Fran

Add your answer:

Earn +20 pts
Q: Is x-1 a function
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

How do you compute quadratic equation using java?

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;


What does the derivative of a function mean?

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.


How do you determine if an equation represents a linear function?

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.


How matrix X1 X2 equals matrix X1 X2?

i think its pretty much the same thing because matrix X1 X2 IS ACTUALLY X1 X2


Why does line parallel to the x-axis will intersect the graph of a function once at most if the function has an inverse?

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.