
/*
** Compute resistance of two parallel resistors, or capacitance of two
** capacitors in series, or another magnitued given by the same
** formula c = a*b/(a+c).
*/

float parallel( float x, float y )
{
    return x*y/(x + y);
}
