Math 7 shows step by step

I would like to know the steps that Mathematica takes to get the result. I have

Limit[n^Log[2, n]/1.001^n, n -> \[Infinity]] 

and Mathematica shows 0, but I want to know how he got this result.

+6
source share
1 answer

Mathematica cannot do this, it uses algorithms that are very different from what you want to see.

There is a set of functions that will return some information about the calculation process for a particular record, but their outputs are a complete mess - they are designed to diagnose development, not as help in completing homework or preparing for an exam.

For some types of tasks, such as constraints, integrals, derivatives, etc., you can use Math Assistant on Web , which describes in detail the process of the entire solution.

+8
source

Source: https://habr.com/ru/post/898929/


All Articles