|  | >(1) higher IQ  --> better looks
>(2) better looks --> higher IQ
    You need to be careful here.  A correlation doesn't imply causality.
    I'd intrepret the "-->" to mean "is a good predictor of".
    The coefficient of correlation is symmetric, and can be used with
    either (1) or (2), under the assumption that the predictor is a
    linear function.
    For non-linear relationships, (1) may be better than (2) -- the
    'predictive power' may go one way, but not the other.  Consider
    the following unrealistic sample:
	good looks	|                     
			|         X X         
			|       X     X       
			|     X        X      
			|   X            X    
			| X               X   
	not so good	|X                  X 
			+----------------------
			 low IQ		high IQ
    Notice that "IQ" is a much better predictor of "looks" than "looks"
    is of "IQ".  If we are forced to assume a linear relationship, then
    the predictive powers are necessarily the same.
 | 
|  |     re: .0
    
    You are correct that the "correlation coefficient" IS symmetric.
    It is usually written as "r", and r(x,y)=r(y,x)  [note: what is
    in parens is usually subscripted] for two variables X and Y.
    
    There is, however, an asymmetric measure, which is related to the
    correlation coeficient.  That would be the SLOPE of the LINEAR
    REGRESSION LINE of X predicting Y *or* Y predicting X.  These slopes
    are typically referred to by a Beta.  These are asymmetric
    because they are sensitive to the units of measurement (e.g. miles
    vs. inches) whereas the correlation coefficient uses standardized
    units (z scores) for both variables.  
    
    r**2 [r squared] is sometimes used as a measure of the "strength"
    of the relationship between two variables, 0 being 'none' and 1
    representing "perfect" prediction ["perfect" here means that
    information about the value of X gives you complete information
    about the value of Y for any given observed case].
    
    Note .1's comment that "prediction" does NOT equal causality.
    
    Let me know if you have any other questions or if this is not clear.
    
    BTW, there are other measures, such as lambda, for non-continuous
    data when one still wants to determine the predictive power of one
    variable for another.  Or chi-square for un-ordered variables
    (e.g., predicting type of car owned by religious preference).
    
    	Penelope
    
 |