The integrals integral dxx integral1infinity 1s dsSolutionFo
The integrals: integral dx/x integral_1^infinity 1/s ds
Solution
Following is the matlab code for the integration:
%integration of dx/x
x = sym(\'x\',\'real\');
xmin = 1;
xmax = 2;
fun = 1/(x);
value = int( fun, xmin, xmax)
%integration of ds/s from 1 to Inf
x = sym(\'x\',\'real\');
xmin = 1;
xmax = Inf;
fun = 1/(x);
value = int( fun, xmin, xmax)
In case, I missed something, please reply here, and I will try to reply ASAP.
