Calculate the angle of inclination?

This function is given:

f(x) = -0.2x^2 – 3x +1.2

Normally I calculate an angle by first solving X with

solve(0 = -0.2x^2 – 3x + 1.2 , x)

This results in X, which I then enter into my calculator as the X-value for the first derivative. This then produces a number, which I enter into arctan() to obtain the angle.

So:

  1. solve(0 = function) x = 123
  2. d/dx(function)|x = 123
  3. arctan(result 2) = angle

But how exactly do I do it with the angle of inclination?

My solution would be (I don't know if it's right!)

  1. Step: 1. Derivation
  2. Step: solve for X value = -7.5
  3. Step: arctan(-7.5) = 82.4 degrees

Is that true?

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
2 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Rammstein53
11 months ago

f(x) = -0.2×2 – 3x + 1.2

f'(x) = -0.4x – 3

A pitch angle results, for example, from the slope of a function rod end at the point (x,f(x)). If, for example, the positive zero of f(x): x1 ~ 0.389867, then the gradient of the tangent at this zero f'(x1) ~-3.1559

The pitch angle of the tangent is then arctan(-3.1559). The corresponding value in degree depends on the direction of rotation and on which axis one refers to 0 degrees.

The angle in the mathematical sense is pi + arctan(-3.1559) ~ 107.58°

Rammstein53
11 months ago
Reply to  Rammstein53

Thanks for the star