0

I need to evaluate
the problem
using the Maple Software.

I did manage to make my equation look like the given by using "Limit(Sum(1/(i^(9/5)), i=1..n),i = infinity);" However, I could not proceed any further as I tried using evalf for result but nothing returned even if I switched the uppercase L and S for limit and sum.

1 Answer 1

0

Your code is taking,

Limit(..., i = infinity)

but that's a typo. It ought to be,

Limit(..., n = infinity)

limit(sum(1/k^(9/5),k=1..n), n=infinity);

     Zeta(9/5)

evalf(%);

     1.882229618

You could also do that as,

Limit(Sum(1/i^(9/5), i = 1 .. n), n=infinity);
value(%);
evalf(%);
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.