Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Does z always equal x? Then it can be rewritten as (w*x)/(y*z) == (w*x)/(y*x) == w/y and if w and y are fixed then it’s just one constant
-
it's called rational function, and I understand your love for maths, but you need to learn some more comprehensible version of English.
-
Due to the fact that x and z increase by the same amount, lets call it n, and n goes to positive infinity, the value of x(n)/z(n) = [x+n]/[z+n] will be approaching 1, as for larger n, x and z become negligible. x(n)/z(n) is not linear because the relationship of x(n) and z(n) changes with n from x/z to almost n/n=1.
w/y*[x(n)/z(n)]
x(n) = x0 + n
z(n) = z0 + n
limit n=>inf of [x(n)/z(n)]
applying De l'Hôpital's rule:
d[x(n)]/dn = x'(n) = n
d[z(n)]/dn = z'(n) = n
x'/z' = n/n = 1
The linearity of the function f(n) = x(n)/z(n) is tested by it's first derivative f'(n) being a constant:
f'(n) = d[x(n)/z(n)]/dn
f'(n) = [x'*z - x*z']/z² (Quotient rule)
f'(n) = [n*(z+n) - (x+n)*n]/[z+n]²
f'(n) = [n*(z-x)]/[z+n]²
as we can see, f'(n) is not a constand thus f(n) is not linear. -
@theabbie "but you need to learn some more comprehensible version of English."
Thats fair.
And also
How DARE you. lol. -
@Root
1) "w and y remain the same" thus w and y are constant which leads to w/y=c, constant.
2) "x increases linearly with z" thus x0 and z0 are constant, n is my increment:
x(n)=x0+n
z(n)=z0+n
(w*x)/(y*z) = (w/y)*(x/z) = c*x(n)/z(n) = c*(x0+n)/(z0+n)
limit of c*(x0+n)/(z0+n) for n approaching infinity is c.
I omitted c in my previous comment because it was irrelevant. 🙂 -
Sorry, I don’t get why this isn’t a constant. Z and x are the same and should cancel out, leaving x and w which are fixed numbers. So you’re just left with one constant divided by another constant
Related Rants
What do you call a function based on (w*x) / (y*z)
where w and y remain the same, and x always increases linearly with z?
For example
at one point on the graph it might look like
(60*1) / (25*1)
and on the next it equals
(60*2) / (25*2)
question
math