is there a good color pattern for emphasizing a specified region on
the z-axis for tries?
Maybe you could use Mesh
?
triesPlot[nrOfTries_]:=Plot3D[
Log[1-certainty]/Log[failure],{certainty,0,1},{failure,0.0001,1},
PlotRange->{0,20},AxesLabel->{"risk","failure","tries"},
ColorFunction->Function[ColorData["NeonColors"][Log[1-#1]/Log[#2]]],
Mesh->{{nrOfTries}},MeshFunctions->{#3&},MeshStyle->{Green,Thick},
ClippingStyle->None
]
triesPlot[10]