Processing math: 100%
Ask Your Question
0

Can sage be used to solve the following kind of problem?

asked 11 years ago

Snap gravatar image

updated 11 years ago

"Given that f(1) = 9, f'(1) = 5, g(9) = 6 and g'(9) = 4, what is the approximate value of g(f(1.05))?"

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 11 years ago

Shashank gravatar image

You can just use the following script to do it. You construct two functions f and g such that they have a slope of 5 and 4 respectively and add a constant such that f(1) = 9 and g(9)=6 then evaluate at 1.05 using g(f(1.05)).

f(x)=5*x+4
g(x)=4*x-30
g(f(1.05))
Preview: (hide)
link

Comments

You could even use the differential equation solvers to solve these as initial value problems and stick it in... that said, this sounds like a Hughes-Hallett homework problem.

kcrisman gravatar imagekcrisman ( 11 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 11 years ago

Seen: 410 times

Last updated: Oct 10 '13