Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So we have some function like (pow(e,(-a*x)))/(sqrt(x)) where a, e are const floats. we have some float eps=pow (10,(-4)). We need to find out starting from which x integral of that function from that x to infinety is less than eps? We can not use functions for special default integration function just standart math like operators. point is to achive max evaluetion speed.

share|improve this question
Yep - it looks like homework from school - but beleve me it is not=( – Spender Dec 6 '10 at 11:48
int eps=10^(-4) looks a bit strange... – Vladimir Dec 6 '10 at 11:49
You seem to be quite misguided. int variables cannot represent decimal numbers, and ^ is not exponentiation in C. You must use functions from math.h just to exponentiate. math.h does not provide anything remotely close to a "solve integral" function. – Karl Knechtel Dec 6 '10 at 11:55
1  
Functions of the class you specified (products of exponentials and fractional power series) tend to have integrals in known forms (i.e. the result is another function) and either big textbooks with tables of integral functions or - gasp, cheating ;-) - wolfram alpha will tell you the result. Leaving it as an exercise to the reader to translate the question into something wolfram alpha will grok. – FrankH. Dec 6 '10 at 12:26
2  
+1 for the tag "continuous integration", it makes me smile – Christoffer Dec 6 '10 at 19:28
show 5 more comments

3 Answers

up vote 0 down vote accepted

Hmm, no one seems to understand the question. The question is: given some function f, find the smallest x such that Integral _ x ^ +inf f(x) < eps. That's the question. So basically we try x = 0, then x = 0.1 then x = 0.2 ... until the integral, for all intents and purposes, vanishes.

For example, given the bell curve for IQ of programmers on SO, at what IQ is the cumulative intelligence of programmers with higher IQ vanishingly small? If we pick x = 100 we know at least half the programmers will have a higher IQ than 100, if we pick 120, how many are left? What about 200? If we have 10,000 programmers here and eps = 1/10000 we're basically asking what IQ the top 0.01% of SO contributors have.

The question is: what is the most efficient way to find this number, given that nothing is known about f other than that is decreases fast enough that its the integral from x to infinity approaches zero as x approaches infinity?

The general answer is: you must start with a guess of some kind. If the result is too big, double your guess, and keep going until you satisfy the requirement. Then, go back to the last value you had (which didn't) and do a binary chop to find the smallest x satisfying the requirement.

To make a good guess is hard. One way is to use a Chebychev approximation of the function, integrate it analytically, solve the problem with the resulting polynomial, and use the solution as your starting guess. The assumption is that all functions look like polynomials off sufficiently high order in any given range.

share|improve this answer
this was answered quite handily above. Why don't you think Josephine's answer was correct? – Dov Dec 6 '10 at 20:09

If you perform the u-substitution u=sqrt(x), your integral will become 2 * integral e^(-au^2) du. With one more substitution you can reduce it to a standard normal. Once you have it in standard normal form, this reduces to calculating erf(x). The substitutions can be done abstractly for any a, and the results hardcoded for simplicity and speed.

share|improve this answer

To calculate this integral you need calculate Error function. If you use gcc you can find erf(...) function in math.h, but it doesn't take params to get exact precise. But you can evaluate Error function's value by youself just using Taylor's series. With given eps it possible to calc the exact number of terms of the series.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.