Advertisement

[Solved] Just a little math question

Started by September 05, 2012 06:19 PM
0 comments, last by alvaro 12 years, 5 months ago
I have a function:
eqn.png

and I need two functions g(x) and h(y) where the following is true:
eqn.png

I don't know if it's possible, but it would greatly improve the quality of my algorithm.
No, it cannot be done. The square root messes things up.

Consider this:
f(0,0) = 1
f(1,0) = e^-1
f(0,1) = e^-1

If g(x) and h(y) existed, you would have
g(0)*h(0) = 1
g(1)*h(0) = e^-1
g(0)*h(1) = e^-1
g(1)*h(1) = (g(1)*h(0)) * (g(0)*h(1)) / (g(0)*h(0)) = e^-2

But f(1,1) = e^-sqrt(2) instead.

This topic is closed to new replies.

Advertisement