You are viewing a single comment's thread. Return to all comments →
x=[i for i in range(0,20)]
''' 4x - 5y + 33 = 0 x = ( 5y - 33 ) / 4 y = ( 4x + 33 ) / 5
20x - 9y - 107 = 0 x = (9y + 107)/20 y = (20x - 107)/9
''' t=7 print( ( 9 * t + 107 ) / 20 )
Seems like cookies are disabled on this browser, please enable them to open this website
Correlation and Regression Lines - A Quick Recap #4
You are viewing a single comment's thread. Return to all comments →
x=[i for i in range(0,20)]
''' 4x - 5y + 33 = 0 x = ( 5y - 33 ) / 4 y = ( 4x + 33 ) / 5
''' t=7 print( ( 9 * t + 107 ) / 20 )