0

Lets assume

T = 195;

T = 0; when x = 2;

T = 195; when x = 4;

What is the relation between T and x?

John Douma
  • 11,426
  • 2
  • 23
  • 24

1 Answers1

0

$T(x)=195(x-2)/2$ is a linear function with $T(2)=0$ and $T(4)=195$.

There is a linear relationship between two points.

I found it by eyeballing, but if you wanted to be pedantic you would solve

$T(x)=ax+b, T(2)=2a+b=0,$ and $T(4)=4a+b=195.$

You would get $(4a+b)-(2a+b)=2a=195$ and $b=-2a=-195$.

J. W. Tanner
  • 60,406