Co-Variance and Signum Function

  • Context: Graduate 
  • Thread starter Thread starter Hanspi
  • Start date Start date
  • Tags Tags
    Function
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 4K views
Hanspi
Messages
2
Reaction score
0
I have a problem that turned up in my research. I'm a microelectronics engineer, s I hope this is not a textbook question for you physics specialists :-)

Given a random variable X that produces real numbers x with a distribution p(x).

The random variable Y is generated from X by the signum function; i.e., y=1 for x>=0 and y=-1 for x<0.

How can I calculate the covariance of X and Y in general? And, if there is no general solution, does a solution exist if p(x) is a gaussian distribution with mean zero?

Slainte!
Hanspeter
 
Physics news on Phys.org
If we use E(X) to denote the expected value of X, you need to compute
E(XY) - E(X)E(Y). The expectations would be computed as integrals. For example, to compute E(XY)

[tex]E(XY) = \int_0^\infty x(1) p(x) dx + \int_{-\infty}^0 x(-1) p(x) dx[/tex]
[tex]= \int_0^\infty x p(x)dx - \int_{-\infty}^0 x p(x) dx[/tex]
 
Thanks a lot for the reply, this is indeed what I needed. If E(X)=0, then E(Y)=0 and the Covariance is simply the mean value of the positive half of p(x) minus the mean value of the negative half of p(x).

To test my understanding, I did (MATLAB):

c=randn(1,1000000);
d=sign(c);
cov(c,d)

ans =

1.0000 0.7981
0.7981 1.0000

mean(c.*(d>=0))-mean(c.*(d<0))

ans =

0.7981

Now comes the mathematically more difficult part: to calculate p(x) in my system depending on the parameters of the system. But hat I know how to to, so thanks a lot for giving me such a good start.

Hanspeter