7 ms·
Show HN: Chebyshev approximation calculator
Hi everyone,
here's a web app I made that generates code for efficiently approximating mathematical functions. This is useful when performance matters more than perfect accuracy, for example in embedded systems.
The app uses Chebyshev expansions, which despite their theoretical depth result in suprisingly compact and readable code in practice. This code is generated for you and using it does not require any knowledge of the underlying theory.
Source code and more info:
https://github.com/stuffmatic/chebyshev-calculator https://github.com/stuffmatic/chebyshev-calculator
- xioxox 2y agoExcellent work. I wanted to do this recently, but it was surprisingly hard to find code to calculate an approximation. I've bookmarked it for when I next need a quick approximation for a function.
- stuffmatic 2y agoThanks for the kind words. I also found it surprisingly hard to find working Chebyshev approximation code. Hopefully this project will change that :)
- jaymzcampbell 2y agoThis is really nicely done! Great work. I fell in love with just how efficient these can be and it explained a lot about why many of the trig and other mathematical functions implemented in 8-bit computers are they way they are. Here's a rather wonderful original document from the BBC Research Department (I had no idea that was a thing) back in 1969 going over just what makes them so great (https://downloads.bbc.co.uk/rd/pubs/reports/1969-10.pdf https://downloads.bbc.co.uk/rd/pubs/reports/1969-10.pdf). If all you've come across are Taylor approximations, these things can seem a little like magic at first.
- stuffmatic 2y agoThank you! Yes it does feel a bit magical, both the mathematical aspects and the fact that it all boils down to a few lines of code in practice.
- hggigg 2y agoRather nice that. I like it. Doesn't handle divide by zero very well though i.e. f(x)=1/x. Should probably consider that as undefined rather than a bad expression.
- tgv 2y agoYou could also set the x_min to 0.001 or so.
- stuffmatic 2y agoOr, since the function expression is just JavaScript, singularities can also be avoided like this: x == 0 ? 1 : Math.sin(x) / x
- ArmedSandwich 2y agoThis is really nice. Wish I had it back in university, it would have made learning the Chebyshev expansions a lot more interesting than they were.
- herodotus 2y agoLovely. In about 1974 I was paid to write a function, in IBM 360 assembly language, to compute square roots. I was asked to make it as efficient as possible. I was in my last year as an undergraduate student. I used a Chebyshev approximation for the initial guess (after scaling the input to lie between 0 and 1), and then used two (or was it three) unrolled iterations of Newton's method to get the solution. First money I ever received for writing code!
- aghilmort 2y agolove this -- still recall how eye-opening my first course was on numerical solving and appreciating for the first time yet again the sheer potential of compute
- ratedgene 2y agoAny good books on this?
- aghilmort 2y agotwenty years back, numerical analysis or numerical methods or sometimes numerical optimization are good keywords for current trending texts on Amazon etc [1] alternatively subset of the numerical analysi wikipedia page or these algorithms in the book is a good seed filter [2] ideally covers some linalg like gaussian elim, power method, newton's root finding dynamic, and issues like approximating by discretization, recursion to reduce solve iterations, and things like convergence due to numerical instability due to IEEE 754 fp16 limits etc 1. https://en.wikipedia.org/wiki/Numerical_analysis https://en.wikipedia.org/wiki/Numerical_analysis 2. https://chatgpt.com/share/67002e8c-c5c4-8008-83f9-a6ebc603add2 https://chatgpt.com/share/67002e8c-c5c4-8008-83f9-a6ebc603ad...
- pclmulqdq 2y agoI am working on one with some more modern suggestions on polynomial approximation, but I think it's still at least 3-6 months away.
- Fredkin 2y agoMath.sin(x)/x (the sinc function) for 7 terms over [-3,3] gives coefficients c0...c6 that are all NaNs. Is this a bug? To work around it, I handled the x near zero case by just forcing to 1.0. if(Math.abs(x) > 1e-8 ){ Math.sin(x)/x } else { 1.0 }
- Majromax 2y ago> Math.sin(x)/x (the sinc function) for 7 terms over [-3,3] gives coefficients c0...c6 that are all NaNs. Is this a bug? That wouldn't exactly be a bug. The code is undoubtedly calculating the Chebyshev coefficients by evaluating the function on something like x_j = (xmin) + (xmax - xmin)/2(1 + cos(pi[0..j-1]/(j-1)). If one of those grid points happens to be exactly 0, it will try to evaluate Math.sin(0)/0, giving the NaN. Another workaround is to have a slightly asymmetric range, such as [-3,+3.0000001]
- stuffmatic 2y agoYes, that is a bug, good catch. The app should show an error if the function is not defined in all chebyshev nodes. Like you have already discovered, it's easy to work around this issue for now.
- beyondCritics 2y agoThe problem here likely is, that your first expression was not well defined for x=0 and seemingly the poor approximation code stumbled over it. Shame on it!
- Zeetah 2y agoNice! I'd like to generate a Chebyshev approximation for a set of X, Y sensor values. Any hints on how to modify your code to do that?
- stuffmatic 2y agoYou could look into using the ChebyshevExpansion class directly. It takes as one of its arguments a callback that returns f(x) for a given x. In your case, f(x) would be your sensor values with some suitable interpolation. A more ambitious route is to add support for somehow importing tabular data into the app.
- atum47 2y agoI've been wondering about something and I don't know if this is the place to ask it, but here it goes. I saw a video the other day about how the Nintendo 64 did not have the ability to calculate sine, so they used a lookup table from 0 to 2PI (with some clever trick to reduce the size of the table). Would it have been possibly to train a NN and store the weights or even a function and store the coefficients to calculate the sine, cosine?
- mandibles 2y agoNeural networks often have trigonometric functions internally, so it would be massively more computation than necessary. If you have a few spare CPU cycles, a hybrid approximation could start with a sparse lookup table of values as the initial guess for a few rounds of a numerical approximation technique. Or you just store the first few coefficients of a polynomial approximation (as in the OP's work).
- EdgeExplorer 2y agoObviously you could train some kind of neural net to calculate any function, but this would never make sense for a well-known function like sine. Neural nets are a great solution when you need to evaluate something that isn't easy to analyze mathematically, but there are already many known techniques for calculating and approximating trigonometric functions. Training a neural net to calculate sines is like the math equivalent of using an LLM to reverse a string. Sure, you *can*, but the idea only makes sense if you don't understand how fundamentally solvable the problem is with a more direct approach. It's always worth looking if mathematicians already have a solution to a problem before reaching for AI/ML techniques. Unfortunately, a lot of effort is probably being spent these days programming some kind of AI/ML to solve problems that have a known, efficient, maybe even proven optimal solution that developers just don't know about.
- o11c 2y ago> using an LLM to reverse a string. Input: Please reverse the string "Dlrow, Olleh!" Output (chatgpt): Sure! The reversed string is "!helleO ,worldD" Output (liquid): The reversed string is "!ehT, Llord!" Output (llama): The reversed string is "Hellol, Wlod." Output (phi): The reversed string of "Dlrow, Olleh!" is "!HoleL ,owrdL" or "Hello, World!" backwards. Output (qwen): The reversed string of "Dlrow, Olleh!" is "!hlelo ,wolrD". Honestly some of them are doing better than I expected.
- orlp 2y agoI've had good results in the past with sollya: https://www.sollya.org/ https://www.sollya.org/. Note: results. The software itself is a bit of a pain to use.
- pclmulqdq 2y agoSollya is probably the best modern tool for doing this. Under the hood, it does a Remez approximation followed by LLL to quantize to floating point. No use of Chebyshev directly.
- janwas 2y agohm, why not Chebfun? Result is a rational polynomial so we have to divide, but that seems fine/fast on servers.
- pclmulqdq 2y agoSollya can also do rational approximants, which are only faster in some circumstances, and Chebfun does not (as far as I know) account for floating point quantization, which is a big deal if you are trying to be accurate.
- janwas 2y agoPossible misunderstanding: I mean a rational function in the sense of Padé approximation or CF [1], not just representing individual numbers as p/q. I did not find anything related to this in Sollya [2]. [1]: https://www.jstor.org/stable/2157229 https://www.jstor.org/stable/2157229 [2]: https://www.sollya.org/releases/sollya-8.0/sollya-8.0.pdf https://www.sollya.org/releases/sollya-8.0/sollya-8.0.pdf
- pclmulqdq 2y agohttps://hal.science/hal-04093020/document https://hal.science/hal-04093020/document May not have been merged yet. Pade approximants are also less useful than you might think - it's very hard to get to truly correctly rounded functions with the division.
- richrichie 2y agoChebyshev polynomials are so powerful and versatile (in approximation) that people think it is a too-good-to-be-true scam and do not use them. One’s first go to method should be Chebyshev. Neural nets used as a last resort.
- anonzzzies 2y agoGood memories of the 80/90s doing this by hand for demos and games ; extra constraint was 8/16bits.
- Rayhem 2y agoObligatory callout to Nick Trefethen (et. al.)'s Chebfun[1] which extends this stuff in just about every direction you can think of. 'Chebfuns' are to functions as floats are to actual mathematical numbers. It's some seriously impressive software. [1]: https://www.chebfun.org https://www.chebfun.org
- kxyvr 2y agoI'll second this. Their methods are very powerful and very fast. For those out of the loop, the Chebyshev (and ultra-spherical) machinery allows a very accurate (machine precision) approximation to most functions to be computed very quickly. Then, this representation can be manipulated more easily. This enables a variety of methods such as finding the solution to differential algebraic equations to machine precision or finding the global min/max of a 1-D function. I believe they use a different algorithm now, but the basic methodology that used to be used by Chebfun can be found in the book Spectral Methods in Matlab by Trefethen. Look at chapter 6. The newer methodology with ultraspherical functions can be found in a SIAM review paper titled, "A Fast and Well-Conditioned Spectral Method," by Olver and Townsend.
- roger_ 2y agoGreat work, looks useful! Any chance you can add a rational function version?
- sfpotter 2y agoAlso pretty easy: import numpy as np p = np.polynomial.Chebyshev.interpolate(f, degree, domain=(xmin, xmax)) # insert your code to print out some C code Also strongly recommend some basic familiarity with the theory. Approximating `Math.abs(x)` to even a few digits of uniform accuracy on any interval containing 0 requires tens if not hundreds of thousands of coefficients.
- lainga 2y agowhat does the # insert your code to print out some C code mean?
- sfpotter 2y agoFor instance, maybe I want to define an array of these coefficients in C. I could do: print('double coef[] = {') for c in p.coef: print(f' {c:0.16g},') print('};') and copy-paste it wherever I need.
- deleted 2y ago[deleted]
- mgaunard 2y agowhy not evaluate polynomials using horner or estrin methods
- gjm11 2y agoWith either of those, you're still representing your polynomial as a combination of powers: 1, x, x^2, x^3, x^4, etc. For many purposes it's much better to represent a polynomial as a combination of Chebyshev polynomials: 1, x, 2x^2-1, 4x^3-3x, etc. (Supposing you are primarily interested in values of x between -1 and +1. For other finite intervals, use Chebyshev polynomials but rescale x. If x can get unboundedly large, consider whether polynomials are really the best representation for the functions you're approximating.) Handwavy account of why: Those powers of x are uncomfortably similar to one another; if you look at, say, x^4 and x^6, they are both rather close to 0 for smallish x and shoot up towards 1 once x gets close to +-1. So if you have a function whose behaviour is substantially unlike these and represent it as a polynomial, you're going to be relying on having those powers largely "cancel one another out", which means e.g. that when you evaluate your function you'll often be representing a smallish number as a combination of much larger numbers, which means you lose a lot of precision. For instance, the function cos(10x) has 7 extrema between x=-1 and x=+1, so you should expect it to be reasonably well approximated by a polynomial of degree not too much bigger than 8. In fact you get a kinda-tolerable approximation with degree 12, and the coefficients of the best-fitting polynomial when represented as a combination of Chebyshev polynomials are all between -1 and +1. So far, so good. If we represent the same function as a combination of powers, the odd-numbered coefficients are zero (as are those when we use the Chebyshev basis; in both cases this is because our function is an even function -- i.e., f(-x) = f(x)), but the even-numbered ones are now approximately 0.975, -4.733, 370.605, -1085.399, 1494.822, -994.178, 259.653. So we're representing this function that takes values between -1 and +1 as a sum of terms that take values in the thousands! (Note: this isn't actually exactly the best-fitting function; I took a cheaty shortcut to produce something similar to not quite equal to the minimax fit. Also, I make a lot of mistakes and maybe there are some above. But the overall shape of the thing is definitely as I have described.) Since our coefficients will be stored only to some finite precision, this means that when we compute the result we will be losing several digits of accuracy. (In this particular case that's fairly meaningless, because when I said "kinda-tolerable" I meant it; the worst-case errors are on the order of 0.03, so losing a few places of accuracy in the calculation won't make much difference. But if we use higher-degree polynomials for better accuracy and work in single-precision floating point -- as e.g. we might do if we were doing our calculations on a GPU for speed -- then the difference may really bite us.) It also means that if we want a lower-degree approximation we'll have to compute it from scratch, whereas if we take a high-degree Chebyshev-polynomial approximation and just truncate it by throwing out the highest-order terms it usually produces a result very similar to doing the lower-degree calculation from scratch.
- hwc 2y agoChebyshev is black magic, and I say that even having seen the derivation in a graduate-level course.
- linvs 2y agoVery cool. The tinkerer in me wanted to see how quickly I could come up with a function that wouldn't be approximated well. Math.cos(x * Math.exp(Math.cos(x * x))) is the best I got so far as it is highly composite, which leads to rapid oscillations and steep gradients that can't easily be approximated by Chebyshev.