T
Terry Milnes
I am trying to find a way to solve equations such as this: limit((SUMSQ(3,D1)+(12*D1)-8)/(SUMSQ(5,D1)-(11*D1)+6)). However, I cannot find a function for limit.
I am trying to find a way to solve equations such as this: limit((SUMSQ(3,D1)+(12*D1)-8)/(SUMSQ(5,D1)-(11*D1)+6)). However, I cannot find a function for limit.
James Ravenswood said:limit((SUMSQ(3,D1)+(12*D1)-8)/(SUMSQ(5,D1)-(11*D1)+6)).
However, I cannot find a function for limit.
Define "limit"
Caveat.... I said:The particular example can simplified to:
y = (D1^2 + 12*D + 1) / (D1^2 - 11*D1 + 31) [....]
So I was surprised to discover that y seems to be asymptotic
to 1 for D1<-11.91608 and D1>5.5884.
Errata... I said:The particular example can simplified to:
y = (D1^2 + 12*D1 + 1) / (D1^2 - 11*D1 + 31) [....]
So I was surprised to discover that y seems to be asymptotic
to 1 for D1<-11.91608 and D1>5.5884.
The apparent asymptotic limits might be due to limitations of
floating-point calculations.
As I said, I have forgotten my calculus. So I am unable to analyze the
formula mathematically.
I am trying to find a way to solve equations such as this: limit((SUMSQ(3,D1)+(12*D1)-8)/(SUMSQ(5,D1)-(11*D1)+6)). However, I cannot find a function for limit.
Terry Milnes said:The limit was when D1 = -2 for this particular equation.
Terry Milnes said:However the very next question was when D1 = infinite,
so Excel will not be able to handle this particular instance.
Errata.... I said:It does not work in this case, but only because we
did the mathematical analysis first.
1E300 is close to the maximum value that Excel can calculate.
The actual largest value that Excel can calculate is
(2^1023 - 2^(1023-53))*2, which is about 1.7977E308.
It is also important to note that using Excel with large
values in D1 is not dispositive. The behavior of Excel
calculations is limited by its implementation of numbers,
namely 64-bit binary floating-point. See
http://support.microsoft.com/kb/78113 for some explanation,
albeit flawed in some details.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.