Tell me more ×
Mathematica Stack Exchange is a question and answer site for users of Mathematica. It's 100% free, no registration required.

I try to use

InterpolatingPolynomial[{f[1]=2,f'[1]=3,f[2]=6, f'[2]=7, f''[2]=8}, Method->"Hermite"]

in WolframAlpha, but it's wrong.

share|improve this question
3  
InterpolatingPolynomial[{{{1}, 2, 3}, {{2}, 6, 7, 8}}, x] – belisarius Jan 14 at 19:40
Thank you! You can add that as an answer I think. – daroPL Jan 14 at 19:50
Is this a wolfram alpha question, are they on topic? – image_doctor Jan 14 at 19:57
Are you using the WolframAlpha website directly, or Mathematica? If you are using the website directly, then it is off-topic as this website is dedicated to Mathematica only. – rcollyer Jan 14 at 20:05
I use both of them. – daroPL Jan 14 at 20:06
show 3 more comments

1 Answer

You should try

InterpolatingPolynomial[{{{1}, 2, 3}, {{2}, 6, 7, 8}}, x]

In WA:

enter image description here

In Mathematica:

enter image description here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.