# Biochem 721.3; Foster # Data and gnuplot tips for problem 7.8 (Tinoco et al.) # tip: to plot time v. c, use: # gnuplot> plot 'prob_7_8.dat' using 1:2 # to fit: # gnuplot> fit a*x+b 'prob_7_8.dat' using 1:2 via a,b # then, # gnuplot> replot a*x+b # Note: in Gnuplot the expression log(x) is actually ln(x), or 2.303*log(x) # tip: to plot t v. ln(c), use: # gnuplot> plot 'prob_7_8.dat' using 1:(log($2)) # to fit: # gnuplot> fit a*x+b 'prob_7_8.dat' using 1:(log($2)) via a,b # then, # gnuplot> replot a*x+b # tip: to plot t v. 1/c, use: # gnuplot> plot 'prob_7_8.dat' using 1:(1/$2) # to fit: # gnuplot> fit a*x+b 'prob_7_8.dat' using 1:(1/$2) via a,b # then, # gnuplot> replot a*x+b # Here's the data # t (s) c (mM) 0 10.0 1 6.91 2 4.98 3 4.32 4 3.55 5 3.21 6 2.61 7 2.50 8 2.22 9 1.91 10 1.80 11 1.65 12 1.52 13 1.36 14 1.42 15 1.23 16 1.20 17 1.13 18 1.09 19 1.00 20 0.92