InterviewSolution
Saved Bookmarks
| 1. |
Integrate the functions`((logx)^2)/x` |
|
Answer» Let `I = int (logx)^2/x dx` Let `logx = t => dx/x = dt` Then, `I = int t^2 dt` `=>I = t^3/3+c` `=>I = (logx)^3/3+c.` |
|