All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Just Math > Calculus
Eccentric Integral (Posted on 2010-02-18) Difficulty: 2 of 5
The respective eccentricities of the hyperbola x2/ a2 - y2/ b2 = 1 and its conjugate y2/ b2 - x2/ a2 = 1 are denoted by e and f(e).

Evaluate:

√2
(f(e) + f(f(e))) de
1

See The Solution Submitted by K Sengupta    
Rating: 5.0000 (1 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Some Thoughts An attempt using numerical integration (spoiler?) | Comment 1 of 2

As the eccentricity is sqrt(1+(b/a)^2), and the eccentricity of the conjugate interchanges the a and the b, we can convert the one to the other by squaring, subtracting 1, taking the reciprocal, adding 1 and taking the square root:

f(e) = sqrt(1+1/(e^2 - 1))

And f(f(e)) is just e, due to the mutual nature of the function.

So we're integrating e + sqrt(1+1/(e^2 - 1))

The following program integrates this numerically from 1 to sqrt(2):

DEFDBL A-Z
h = .01
DO
  h = h / 10
  t = 0
  FOR x = 1 + h TO SQR(2) STEP h
    t = t + h * (x + SQR(1 + 1 / (x * x - 1)))
  NEXT
  PRINT t
LOOP

with successively finer integration steps.

The successively better approximations are:

1.496733581220134
1.467652052959196
1.489726658257067
1.496733584625637
1.498966670699274
1.49967334338193
1.499896743818623
1.499967188468245

making it appear the answer is 3/2.

 


  Posted by Charlie on 2010-02-19 11:48:51
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (7)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information