- 20,807
- 28,421
You did. The example should show that the quotient criterion for convergence and divergence of series needs all its strong restrictions.Not anonymous said:I am unsure if I understood the question correctly
You did. The example should show that the quotient criterion for convergence and divergence of series needs all its strong restrictions.Not anonymous said:I am unsure if I understood the question correctly
fresh_42 said:There are easier ways, e.g. with Stirling's formula, although the above solution seems to use the proof of Stirling. However, it can be used directly with appropriate error terms. Another possibility is the use of Wallis' series. So the problem still allows attempts of solutions!
fresh_42 said:14. For natural numbers ##1\leq k\leq 2n## show that
$$
{{2n+1}\choose{k−1}} + {{2n+1}\choose{k+1}} ≥ 2⋅\dfrac{n+1} {n+2}⋅ {{2n+1}\choose{k}}
$$
fresh_42 said:15. The year on the Earth-like planet Trappist-1e has ##365## days divided into months of ##28,30,31## days. How many months does its year have and how many months with (i) ##28##, (ii) ##30##, (iii) ##31## days?
Send me your crystal ball so that I can check ...Not anonymous said:My understanding is that the question is just asking for positive integer only solutions to the equation ##28a + 30b + 31c = 365##, where ##a,b,c## denote number of months of duration 28, 30 and 31 days respectively. If that is right, then 2 solutions exist if there must be at least 1 month of each duration (28, 30 and 31 days) and 1 more solution exists if a year is allowed to have no months of certain duration.
Solutions where ##a, b, c## are all non-zero:
(i) ##a=1, b=4, c=7##. This means 12 months in a year, like a non-leap year in our calendar.
(ii) ##a=2, b=1, c=9##. This too means 12 months in a year
There is just one solution where not all months of each of the 3 types need to be present:
(iii) ##a=0, b=7, c=5##. This too means 12 months in a year
fresh_42 said:Send me your crystal ball so that I can check ...
# Maximum number of months (in one year) of duration 28, 30 and 31 days cannot be more than 13, 12 and 11 respectively since 365/28 = 13.03.. , 365/30 = 12.16.., 365/31= 11.77..
for i in range(0,14):
for j in range(0,13):
for k in range(0,12):
if (28*i + 30*j + 31*k == 365):
print("a=", i, ", b=", j, "c=", k)
We live in times where a script should be allowed, so I will accept it. However, the problem has been meant to practice an important trick: the pigeon hole principle.Not anonymous said:I wrote a small script to find solutions to that equation since I thought the question was a non-proof-type, just solution-needed type puzzle.
Python:# Maximum number of months (in one year) of duration 28, 30 and 31 days cannot be more than 13, 12 and 11 respectively since 365/28 = 13.03.. , 365/30 = 12.16.., 365/31= 11.77.. for i in range(0,14): for j in range(0,13): for k in range(0,12): if (28*i + 30*j + 31*k == 365): print("a=", i, ", b=", j, "c=", k)
If this was meant to be a proof-type question, then I apologize for having posted the solution without math proof
benorin said:I did problem 6 because it didn't say solved next to the problem, but I believe someone else solved already. I used Stirling's Approximation ##n! \sim n^n e^{-n}\sqrt{2\pi n}## hence
$$\tfrac{\sqrt{\pi n}}{2^{2n}}\cdot\tfrac{(2n)!}{(n!)^2} \sim \tfrac{\sqrt{\pi n}}{2^{2n}}\cdot\tfrac{(2n)^{2n}e^{-2n}\sqrt{4\pi n}}{(n^n e^{-n}\sqrt{2\pi n})^2}\rightarrow 1 \text{ as }n\to\infty$$
fresh_42 said:6. Calculate (FR)
$$
\lim_{n \to \infty}\dfrac{\sqrt{n\pi}}{2^{2n}}\cdot \binom{2n}{n}
$$
Math_QED said:Doesn't the question ask to not use ##\sim##?
benorin said:Nope.