Another introductory calc problem

  • Thread starter Thread starter Fifty
  • Start date Start date
  • Tags Tags
    Introductory
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
6 replies · 2K views
Fifty
Messages
33
Reaction score
0
Given a function f(x), I'm wondering if the slope of the secant between points a, f(a) and b, f(b) is equal to the average of the derivative at a and b.

Mathematically, I want to know whether:

[itex]\frac{f(a) - f(b)}{a - b}[/itex] = [itex]\frac{f'(a) + f'(b)}{2}[/itex]

is true. I can see that it is for polynomial functions, but I can't seem to prove this relationship for a general function, f(x).

This isn't homework, I'm just curious. Thanks for the help!
 
Physics news on Phys.org
Chestermiller said:
Have you learned about Taylor series expansions yet?

Chet
Nope. I was literally just introduced to calculus four weeks ago.

EDIT: It's late here, I'm going to have a look at this thread tomorrow (and the comments already posted).
 
[tex]f(a)=f(b)-(b-a)f'(b)+\frac{(b-a)2}{2}f''(b) + ...[/tex]
[tex]f(b)=f(a)+(b-a)f'(a)+\frac{(b-a)2}{2}f''(a) + ...[/tex]
Subtracting:
[tex]2(f(b)-f(a))=(b-a)(f'(a)+f'(b))-\frac{(b-a)2}{2}(f''(b)-f''(a))+...[/tex]
Or,
[tex]\frac{f(b)-f(a)}{b-a}=\frac{f'(a)+f'(b)}{2}-\frac{(b-a)}{4}(f''(b)-f''(a))+...[/tex]
A better approximation is:
[tex]\frac{f(b)-f(a)}{b-a}≈f'\left(\frac{a+b}{2}\right)[/tex]
This relation is exact if f is quadratic.

Chet