• recategorized by
1,306 views
0 0 votes

How to find log of the first n natural numbers?

$T(n)= \log 1+ \log 2+ \log 3+\ldots + \log n$  // How to proceed from here?

1 Answer

Best answer
1 1 vote

you can write  log( 1 *2 *3 * ------------------n)

log( n ! )   answer    product of 1st n natural number = n ! 

other one :  1 + 2+ 3+ -------------+ n  = n(n+1) /2 

same way log 1 + log 2+ -------- log n = $\frac{logn(logn +1 )}{2}$   {  but it is not true  } 

• selected by
Position:
Show:

Related questions

2 2 votes
0 0 answers
2.9k
2.9k views
shaz asked Feb 23, 2019
2,928 views
If log 2= 0.30103, the number of digits in 2^64 is :a.18 b.19 c.20 d.21
1 1 vote
0 0 answers
3.2k
3.2k views
Manu Thakur asked Oct 13, 2017
3,181 views
Consider the following context free grammar:$S \rightarrow ASA | aB$$A \rightarrow B | S$$B \rightarrow b | \epsilon$How many productions will be there in the modified g...
2 2 votes
2 2 answers
647
647 views
gatecse asked Feb 23
647 views
Consider two distinct positive real numbers $m, n$, with $m>n$. Let $x=n^{\log _{10}(m)}$ and $y=m^{\log _{10}(n)}$. The relation between $x$ and $y$ is $\_\_\_\_$.$x>y$$...
2 2 votes
2 2 answers
458
458 views
Shubham Sharma 2 asked Jun 20, 2025
458 views
Let $x,$ $y,$ $z$ be positive numbers such that $x^{2}+y^{2}=z^{2}$. Determine the value of the following expression:$$\frac{\log _{y+z} x+\log _{z-y} x}{\left(\log _{y+z...