Question : how can you find the steepest part of a curve?

Hi

How do you find the steepest part of a curve. I saw something on the internet that says you use second derivative = 0 to find points of inflection but

1) a second derivative = 0 doesn't guarantee a point of inflection does it?
2) even if it did, why is a point of inflection the steepest part of a curve

thanks

Answer : how can you find the steepest part of a curve?

Try this:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
    Protected Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button1.Click

        Session("SalesmanID") = TextBox1.Text.ToUpper
        TextBox2.Text = ""
        If cbBids.Checked Then
            TextBox2.Text = "sotype = 'B'"
        End If

        If cbReturns.Checked Then
            If TextBox2.Text = "" Then
                TextBox2.Text = "sotype = 'R'"
            Else
                TextBox2.Text = TextBox2.Text & " Or sotype = 'R'"
            End If
        End If

        If cbPartial.Checked Then
            If TextBox2.Text = "" Then
                TextBox2.Text = "sotype = 'O'"
            Else
                TextBox2.Text = TextBox2.Text & " Or sotype = 'O'"
            End If
        End If

        If cbRegular.Checked Then
            If TextBox2.Text = "" Then
                TextBox2.Text = "sotype = ''"
            Else
                TextBox2.Text = TextBox2.Text & " Or sotype = ''"
            End If
        End If

        Session("what") = TextBox2.Text
        MsgBox(TextBox2.Text)

        Response.Redirect("SOS.aspx")

    End Sub
Random Solutions  
 
programming4us programming4us