Math Challenge - March 2020 (Part II)

In summary, we discussed questions related to the convergence of series, absolute convergence, and the use of a computer to sum a series. We also explored the concept of critical values and the Jacobson radical of a ring. We solved problems involving limits, the properties of rational numbers, and the behavior of sequences. Additionally, we explored the number of days in a year on a hypothetical planet and attempted to decrypt a coded message.
  • #36
A set ##X=\{u\in H^1(0,1)\mid u(0)=0\}## being endowed with an inner product
$$(u,v)=\int_0^1u'(x)v'(x)dx$$ is a Hilbert space. By the Riesz representation theorem,
there exists a unique ##w\in X## such that ##\int_0^1f(x)dx=(w,f).## It remains to calculate ##w## (use integration by parts).
##w=x-x^2/2,\quad A=\|w\|_X=1/\sqrt 3##
The function on which the equality is attained ##w/\|w\|_X##
 
Last edited:
Physics news on Phys.org
  • #37
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?

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
 
  • #38
@wrobel Nice, although I'll just remark that you don't actually use Riesz representation (since you directly verified that your ##w## represents the functional ##f\mapsto\int_0^1 f##)
 
  • #39
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
Send me your crystal ball so that I can check ...
 
  • #40
#5: Hint:

Unusual as its definition may seem, this is a rather nice and uncomplicated ring, i.e. all ideals are principal, indeed all are powers of the one unique maximal ideal. Perhaps you know something about the structure of an arbitrary finitely generated module in this situation, but if not, you might use the usual tool for dealing with finitely generated objects, i.e. induction on the number of generators.
 
  • #41
fresh_42 said:
Send me your crystal ball so that I can check ...

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
 
  • #42
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
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.

E.g. one could start with the observation that ##c>1## and rewrite the equation as ##28a+30b+31c'=334## and consider ##28(a+b+c')\leq 334 \leq 31(a+b+c')## etc.
 
  • #43
#9: SPOILER (partial hint):To rule out the case where y is odd, prove first that an odd square is congruent to 1 mod 8.
 
  • #44
@mathwonk I'm not sure if it's possible to solve with just modular arithmetic, but please do post an argument if you find one. It follows quickly from computing that the class group of ##\mathbb{Q}(\sqrt{-21})## is ##C_2\times C_2##, but I posed the problem wondering if anyone here would find a more elementary approach.
 
  • #45
I assumed you wanted an elementary approach, but I do not have a similarly easy one for y even. (Are you using Fueter's criterion for non existence of rational points? No, I guess not. At least not obviously. I am a novice here, having never studied algebraic number theory.)
 
Last edited:
  • #46
An elementary approach would be great if you could find one!

Maybe "follows quickly" was a bit optimistic. But you can view ##x^3=y^2+21=(y+\sqrt{-21})(y-\sqrt{-21})## as an equality of ideals in the ring of integers ##\mathbb{Z}[\sqrt{-21}]## and use the fact that the two ideals on the RHS are coprime to conclude that they are cubes. They have to be cubes of principal ideals by the computation of the class group, which you can directly check is impossible.

I also don't know much about algebraic number theory, and in particular am not familiar with Fueter's criterion. I didn't find a relevant fact with that name with a google search- do you have a reference to look at?
 
  • Like
Likes mathwonk
  • #47
Thanks!

I meant this reference:

https://www.jstor.org/stable/2047452?seq=1

and you have inspired me to read mike artin's chapter on factorization in his algebra book, where apparently I can learn something of this topic of algebraic number theory!
 
Last edited:
  • Like
Likes Infrared
  • #48
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$$
 
  • #49
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$$

Doesn't the question ask to not use ##\sim##?
 
  • #50
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##?

Nope.
 
  • Skeptical
Likes member 587159
  • #51
benorin said:
Nope.

b.) by using Stirling's formula, with accurate remainder terms, i.e. not simply ##\sim##.

is the version that's still unsolved.
 
  • #52
Oh I totally didn't see the a) and b), my bad.
 

Similar threads

  • Math Proof Training and Practice
3
Replies
100
Views
7K
  • Math Proof Training and Practice
2
Replies
67
Views
8K
  • Math Proof Training and Practice
2
Replies
64
Views
12K
  • Math Proof Training and Practice
2
Replies
61
Views
6K
  • Math Proof Training and Practice
Replies
33
Views
7K
  • Math Proof Training and Practice
2
Replies
60
Views
8K
  • Math Proof Training and Practice
2
Replies
61
Views
7K
  • Math Proof Training and Practice
2
Replies
61
Views
9K
  • Math Proof Training and Practice
2
Replies
48
Views
9K
  • Math Proof Training and Practice
3
Replies
86
Views
9K
Back
Top