Biology Forums - Study Force

Science-Related Homework Help Algebra Topic started by: moonwolf on Sep 21, 2017



Title: Solve Pascal equation as a function of y
Post by: moonwolf on Sep 21, 2017
Here is a Pascal equation that yields y as a function of the HighLowRange of the data over a number of days. 

Can you reverse the equation to yield the HighLowRange as a function of y ?

Code:
Variable: y(0) ;

y = 0 ;

For days = 2 To 100 Begin 

y = y + ( SquareRoot(days) * Log( ( Average(HighLowRange(days), 50)
/ Average(HighLowRange(1)[days-1], 50) ) / SquareRoot(days) ) ) ;

End ;