Find $\int \ln(5x^3)dx$.
Based on my Ti-89 graphing calculator, the answer I found is $x\cdot \ln(x^3)+(\ln(5)-3)\cdot x$. But I want to know how to get to this answer. I know that by the general formula/rule, $\int \ln(x)dx=\frac{1}{x}+c$ but how to apply that to this problem?
Combining what others have noted, this would be the full solution to your integral:
From the property $\ln(ab)=\ln a+\ln b$, we rewrite the integrand $\ln(5x^3)=\ln5+\ln x^3$, so: $$\int \ln(5x^3)dx=\int \ln5+\ln x^3dx=\int \ln5dx+\int\ln x^3dx=x\ln5+\int \ln x^3dx$$ From the property $\ln a^b=b\ln a$, we rewrite $\ln x^3=3\ln x$, therefore: $$x\ln5+3\int1\cdot \ln xdx$$ We can find the integral of $\ln x$ using integration by parts (your formula is almost correct, except it works the other way around, since it applies to the derivative of $\ln x$, not its integral): $$u=\color{#C00000}{\ln x} \quad du=\color{#008080}{\frac{1}{x}}dx$$ $$dv=1 dx \quad v=\color{#C00000}{x}$$ $$\int\ln xdx=\color{#C00000}{x\ln x}-\int \color{#C00000}{x}\cdot\ \color{#008080}{\frac{1}{x}} dx=x\ln x-x+c_1$$ Using our previous results, we find the initial integral: $$x\ln5+3x\ln x-3x+c$$ We can again use the property $b\ln a=\ln a^b$ to rewrite $3\ln x=\ln x^3$. Thus, the final answer: $$\int \ln(5x^3)dx=x\ln x^3+x\ln5-3x+c$$ Which is exactly what you found using a calculator, if you factor out $x$ for the terms $x\ln5$ and $3x$.
Hope it helps :)