InterviewSolution
Saved Bookmarks
| 1. |
Integrate the following functions sqrt(ax+b) |
|
Answer» Solution :`int SQRT(ax+b) DX = int (ax+b)^(1/2) dx` =`(ax+b)^(1/2+1)/(a(1/2+1)) +C` = `2/(3a) (ax+b)^(1/2) +c` |
|