▲ | incognito124 5 days ago | |||||||
Back in my uni days I did not get why that works. Why are sine waves special? Turns out... they are not! You can do the same thing using a different set of functions, like Legendre polynomials, or wavelets. | ||||||||
▲ | MontyCarloHall 5 days ago | parent | next [-] | |||||||
>Turns out... they are not! You can do the same thing using a different set of functions, like Legendre polynomials, or wavelets. Yup, any set of orthogonal functions! The special thing about sines is that they form an exceptionally easy-to-understand orthogonal basis, with a bunch of other nice properties to boot. | ||||||||
▲ | nestes 5 days ago | parent | prev | next [-] | |||||||
To be maximally pedantic, sine waves (or complex exponentials through Euler's formula), ARE special because they're the eigenfunctions of linear time-invariant systems. For anybody reading this without a linear algebra background, this just means using sine waves often makes your math a lot less disgusting when representing a broad class of useful mathematical models. Which to your point: You're absolutely correct that you can use a bunch of different sets of functions for your decomposition. Linear algebra just says that you might as well use the most convenient one! | ||||||||
| ||||||||
▲ | cjbgkagh 5 days ago | parent | prev [-] | |||||||
Another place where functions are approximated is in machine learning which use a variety of non-linear functions for activations, for example the ReLU f(x)= max(0,x) |