python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
solution for integral of x/(x-6)dx
I was trying to solve this integral x/(x-6)dx and I used substitution. u = x-6 and x = u+6.
In the end, I ended up with the answer x+6ln|x-6|-6+C, however, the answer is x+6ln|x-6|+C without the -6. C...
Xoqlsdi7
Votes: 0
Answers: 1
derive exponential function using log() in C
I am trying to derive exponential function using logarithms. I know from below equation
log(22026.4657948067), is 10
and
exp(10) is 22026.4657948067
I would like to understand the basic math behind ex...
Coder
Votes: 0
Answers: 2
Why my natural log function is so imprecise?
Firstly, I'm using this approximation of a natural log. Or look here (4.1.27) for a better representation of formula.
Here's my implementation:
constexpr double eps = 1e-12;
constexpr double my_exp(c...
Learpcs
Votes: 0
Answers: 2
C#: Natural Log needed with decimal values for financial purpose
Is there a way to compute a natural log using decimal values in C#?
I need something like
decimal dec = Math.Log(decimalInput);`
The problem is that Math.Log(x) only works with a double type as input...
André Levasseur
Votes: 0
Answers: 0