#elementary-number-theory
1 messages · Page 55 of 1
so the total count of divisors is 2 * (size of lower group) + 1
which is literally odd by definition
@craggy solstice
does anyone know of a proof that states any prime is a sum of other primes and or 1
Yes, here: any prime p = 1 + 1 + ... + 1 (p times)
are they required to be distinct?
if so, there's a simple induction proof using bertrand's postulate
For division with remainder theorem (Let a and b be integers with b > 0. Then there exist unique integers q and r such that a=bq+r and 0 \geq r < b), can I just say a=0 q=0 and r=0 is the base case and P(a+1,b) splits off into if r < b - 1, r = r+1 and if r = b-1, then r=0 and b=b+1? (and then do the same for P(a-1,b) and prove uniqueness?)
i dont think all primes can be written as a sum of primes
@craggy solstice you can use Bertrand’s postulate for this.
excluding the case for 4,6,11
If we take the primes to be distinct, that is
And you’d have to include 1
This is hard to prove
1,3; 1,5; 1,3,7
What is the second largest number that cannot be expressed in the form of 13n+31m, where n and m are integers.
I’m not sure how to approach this
are you sure this is the question?
Bezout's identity tells you that there's a solution to 13n+31m=1 so once you find that, 13(kn)+31(km)=k
you can make any number
I assume positive integers n and m
even then, the problem is easier
13, 26 done
can only be a combination of multiples of 13 and 31
oops did that backwards
1, 2
done
2 is the second largest number that can't be written of the form 13n+31m with n,m positive
not sure how else you could interpret it
question is just wrong
The largest number that cannot be expressed is 359 by McNugget Theorem
Finding the second largest number after that is trivial
Show that $\sum_{n \leq x} d\left(n\right) = xlnx + O(x) $ where dn is number of positive divisors of n
Godel:
Oh, I see
hm, I’ll think on this
@sacred junco
O(1)*x=O(x)?
or is this not correct, I am trying to learn it so I can help
sum n<x d(n)=sum n<x floor(x/n) by swapping order of summation
$\sum_{n\leq x} d(n)=\sum_{n\leq x}\sum_{m|n} 1=\sum_{m\leq x} \lfloor \dfrac{x}{m}\rfloor=x\sum_{m\leq x} \frac{1}{m}+O(x)$
@hollow basalt that was a quick proof Gomez, I had a similar idea for multiplying the sum over 1/m by x
that’s why I was asking about O(1)*x=O(x)
gomez:
I know how to make delimiters bigger, I just didn't care.
Ik you do haha
wait why is that
I was just noting
why is what?
no thats different
Think about how many times a given m "counts" in the previous sum.
It is precisely the number of multiples of m less than x.
which is the floor of x/m
ohh ok I think I see it
it was a question on my exam and I had like 10 mins lef to do it
I tried induction or something lmao
but that was very quick
nice
a much better bound on the error than O(x) can also be achieved with not too much effort.
well
it was probably O(x) because the previous question on the exam was to show sum 1/n is lnx + O(1)
Yeah I wasn't suggesting you were remembering your exam question wrong.
ye ye gotcha, thanks tho
🐱
So I've been trying to find the integer solutions to y^3 = x^2 + 4. When I factorise it I get y^3 = (x+2i)(x-2i). If I can prove that gcd[(x+2i),(x-2i)] = 1 then I know there exists integers a,b such that (a+bi)^3 = x + 2i
Following this, I assume y is odd and hence the gcd^2 divides both 16 and y^6 hence is 1, so I get the solution y=5, x = +-11 (solving for a,b from imaginary part and then solving for x) however this also gives me the other solution(s) y = 2, x = +-2 despite me assuming x,y were odd. Is there some obvious thing I'm missing here?
Because when I assume they are even, I get the second equation 2y^3 = x^2 + 1 which I have no idea how to solve due to the pesky 2
catalan
@craggy solstice Tijdeman’s. Catalan says x^m - y^n = 1.
that’s a bit advanced though, how do you solve this lol
y^3-8=x^2-4?
gcd[(x+2i),(x-2i)] divides 4 and x+2i, and 2x, so the only possibilities are 1, 1+i, 2, 2+2i.
If x is odd, then the gcd can only be 1.
If x is even, the "gcd" is only 2 or 2+2i.
first find the exponent of 3 in the prime factorization of 1000!
gotta make it at least a little bit easier
esp given that it's greater than 333
no
in the product of all the integers from 1 to 1000
you have
actually you have precisely three hundred and thirty-three numbers which are divisible by 3 and so contribute a factor of 3 to the product.
3, 6, 9, 12, ..., 999
no you don't get it
how many multiples of 3 are in 1000!
there are 333: 3, 6, 9, 12, ..., 993, 996, 999
each multiple is equal to 3*something else
so you have 3*1, 3*2, 3*3, ..., 3*332, 3*333
you can factor out the 3s
so just like how 3*6*9*12 = 3*3*3*3 * 1*2*3*4 = 3^4 * ...
3*6*9*12*...*999 = 3*3*3*...*3 * 1*2*3*...
= 3^333 * ...
so 1000! is a multiple of 3^333
np
@gentle elk u here?
Yes
okay so
Yeah pls
are you fluent with basic modular arithmetic?
Not
okay do you know what euclids algorithm is?
there's a lot of prerequisites if you wanna know how to do it without a calculator lol
Lol I need to know on the calc though because I need to be able to do it in 30 secs
okay so basically the short version is that via the euclidean algorithm, we know that every integer x has an inverse in mod m if gcd(x,m)=1. so using that, we can find x by finding x^-1
we can also use euler's theorem, $x^{\phi{(m)}}\equiv \pmod{m}$ if gcd(x,m) =1 to reduce the power down by a lot
Plum:
if youre using a calculator then you can just use euler totient to get 7^384 = 7^-16, then use a calculator for 7^16 and take the inverse
phi(1000) = 400
Liek for 5502 how will you determine it
well we only care about the mod so we use the same phi value
So 400-5502 ?
5502 = -98 mod 400
How do you k@ow that though ?
to find the first 3 digits just take log_10(n) and then divide by 10^(log_10(n)) and look at the first 3 digits on the calculator
log_10(n) basically finds the number of digits
last 3 just use crt
mod 8 and mod 125
he/she doesnt know crt
So I would take 5502 mod 8 and 5502 mod 125
if u want youll find out that the last 3 digits cycle every 100 🤣
And crt it?
whats 5502
no not like that
lol honestly if you have a calculator just use fast exponentiation
just find 384 in binary and calculate 7^(2^k) for every 1 in position k
okay so
just google crt
he doesnt have the background knowledge to understand the theorem
Yeah
oh
If you did that problem on a paper I could Kanye recreate the same thing for other questions
Maybe *
$$\varphi{(1000)}=400 \to 7^{400} \equiv 1 \pmod{1000}$$ $$7^{384} \equiv 7^{-16} \pmod{1000}$$ $$7^{16} \equiv (-1)^{16} \equiv 1 \pmod{8}$$ $$7^{16} \equiv (7^4)^{4} \equiv 26^4 \equiv 101 \pmod{125}$$ Using CRT, $$7^{16} \equiv 601 \pmod{1000}.$$ Using euclidean algorithm, $$7^{-16} \equiv 401 \pmod{1000}.$$ Therefore, $$7^{384} \equiv 401 \pmod{1000}.$$
Plum:
Idk why you guys are trying to do this, he obviously doesn't understand any of what you're doing
Just tell him to go read some book
No you don't understand any of it
Ok sorry
You don't know what CRT means or what euclidean algorithm is
Yes but what I do get is take the number look at the last two digits do 100-that number
Then do 7^_the number you get mod 1000
And your awnser is there
Yeah but you don't understand any of the other stuff
And that's the stuff you need to understand to be able to do this
Ok 👌
So you should just go read a book
Maybe the aops number theory book
To try to learn this stuff to be able to do these types of problems
@light flicker where is ur pfp from
Dude I just need a way to do this question that all
oops this is prob the wrong channel for that
Tower of God
Have you read it?
smh
Including the fastpass chapters or
They're fifty cents each
lmao
It's a 2 dollar a month subscription lmao
eh it doesnt make much of a difference
Yeah I just couldn't help myself
thank god rachel is gone
idk where she is but i dont care
as long as i dont have to see her again
Someone asked me if this was Rachel yesterday lmao
rachel is blonde smh
Yeah that's what I said
Okay anyways
@gentle elk This isn't going to be the problem on the test
You're not going to get better at competition math if you just memorize processes to do certain types of problems
The problem you're going to get on the test is going to be altered and so you have to actually understand these ideas if you want to be able to do problems
aops books r a good start
10 days before amc no-less
@light flicker that’s the thing I know that it won’t be. Tecas is not the smart when I comes down to this stuff. But I still see your post
Point*
Yeah I am 15
😢😢
wow im old
The point is also that most tests won't allow calculators and so you shouldn't rely on calculators when one won't help, like in this question
Lol ok
u need a calculator to find the first 3 digits tho
Yeah true
It ussaly asks us to find the tens place for the question
but for the last 3 u dont really need to, its just a bit of computation
or learn fast exponentiation
If they give you the approximation for log_3(10) or whatever the question is then you don't need a calculator either
well
Like is says, 7^5502 what is the digit in the tens place
thats just mod 100
lol
And that's why we're trying to tell you to learn this stuff
well 7^8 = 1(mod 100)
and 8 is small enough where u can just test a bunch of small values and find a pattern
Dude I think we have two difrent mod definitions
a = b (mod n) -> a = b + kn for an integer k
When you say mod 100 I think of a number dicddd by 100 and the reminder of it is the awnser
yes
They're the same
^
7^8 is 5764801
yeah
Ok then what from there ?
then 7^(5496) = 1 (mod 100) cuz 8 divides 5496
so the last two digits is just the last two digits of 7^6
which is 49
I mean you won't
Unless you read a book on number theory
There are a lot of things going on in what he said
yeah
how do you prove that if m and n are coprime, then m^2+n^2 and mn are coprime?
what how
or m^2+n^2-2mn both work
euclidean algorithm gcd(m^2+n^2,mn) = gcd(m^2+n^2-2mn,mn) = gcd((m-n)^2,mn))
and gcd(m-n,n)=gcd(m-n,n) = 1
oh ty
if you're using the euclidean algorithm to solve for x and y in ax + by = c, where c is the GCD of a and b, do you always do a/b first (to get the remainder and such)? because I have a problem where b > a so if I do a/b I get basically 0 and b as the remainder. Should I just flip them and do b/a?
ax+by=c has no solutions in the integers.
@pine marsh yes
@sacred junco what?
@sacred junco for some reason I thought we were restricting to Z+
well Z+ \cup 0 are naturals not integers
but yeah, there is a solution in integers and obviously isn't in positive naturals
Hey guys.
I don't understand the implication of then n+1 is an element of B
I understand it like this: B is a subset of N, 1 is element of B, members of set [1,2...n] are elements of B.
Why does that imply that n+1 is also element of B?
we aren't supposing 1,2,...,n are elements of B. we are supposing that: if 1,2,...,n are elements of B, then n+1 is an element of B
So, its a hypothesis.
uh what do you mean? We are supposing that the if...then... statement is true
(while also supposing $B\subseteq\mathbb N$ and $1\in B)$
@spiral lantern
EpicGuy4227:
The whole sentence has the form "Suppose...; then $B=\mathbb N$"
EpicGuy4227:
right
I am having difficulties understanding the "...then n+1 is also in B" part. Why is it true and where does it follow from? Is that simply a part of the assumption (Suppose that...)?
what they're trying to say is
- B is a subset of N
- 1 is in B
- whenever an element x is in B, x + 1 will also be in B
if these three conditions are satisfied then B = N
because of condition 1 we know that the set doesn't contain any other type of numbers other than natural numbers
condition 2 says that 1 is in B
so use condition 3 on x = 1
1 is in B -> 2 is in B
now take x=2
2 is in B -> 3 is in B
and you can do this forever
and you'll end up getting all natural numbers in B
so B = N
condition 2 is called the base case
fields!:
if $b$ is a lower bound of $S,$ then $m\geq b$ for all $m\in S$
fields!:
should definitely be m-b and not m+b
er
wait
lemme make sure i'm not screwing something up big time
yeah they should've considered -b + S and not b+S
if S = {-10, -9, -8} and b = -11 then their construction fails
belated ty
for the case that $S$ has an upper bound, from where does it follow that $M$ has a least element? is it due to the well ordering principle? how?
fields!:
<@&286206848099549185>
yup, wop states that a discrete countable set has a least element. you can substitute it with induction in many proofs
define "discrete"?
basically i reduced the problem to showing:
$J(\chi \rho,\rho)^3 = \left(J(\chi,\rho)^3\right)^*$, where $\chi$ is a character of order 3 and $\rho$ order 2. i tried doing some stuff like expanding the sum, but i didnt really get anwhere.
its a jacobi sum
its to show
you should just pull up Ireland Rosen and read for yourself
$g(\chi \rho)^6 = \rho(-1) p \bar{(\chi(2) J(\chi,\rho))}^4$
thats it fuck bars lmao
im using *
JohnDoeSmith:
You will probably find something similiar in Problems in Algebraic NT by Murty,Esmonde
full with solutions
this isn't algebraic NT
Idk you talk out of your ass a lot
@winter bear Let me get home in maybe an hour and I'll think about it
aight
the book has nothing similar to this problem
looked very similiar so jsut recommended sorry my bad but still it might help
sorry again
actually im stupid
i was trying to expand sums and shit, but actually just converting to gauss sums makes it easy
nvm lol
(also there was a factor of rho(-1) ontop of the conjugation thing btw,if you end up trying to prove it)
where can i start with find all positive integers n for which both n and n^2+2 are prime ?
heres what i tried
since both n and n^2+2 need to be prime n has to be of form 2k+1
then i substituted that into n^2+2
(2k+1)^2+2=4k^2+4k+3
now im looking at this expression and i know that i somehow have to show that 4k^2+4k+3 cant ever be a prime but i cant guess how
*cant ever be a prime unless k=1 or k=0
i also tried about thinking in terms of prime factorization, but couldnt get far with that either
k = 4 gives 83 which is prime
oh yeah but in that case you have n^2+2 prime and n composite
@light flicker do you know how to go about it?
i havent learned of quadratic residues in my class yet
you've learned about fermat's last theorem?
i do know about it but not in class
this is like 2nd week in the elementary number theory class
the only thing weve learned is gcd prime factorization and some other basic stuff
you've learned about mod right
yup
think about p^2+ 2 (mod 3)
is there something about perfect squares that helps?
no
alright ill chew on it
right now i dont see anything else than p^2+2 (mod 3) being anything else other than 0,1,2
if its 0 then p^2+2 is not prime
if its 2 its not prime either
if its 1 it can be a prime
so i can write p^2+2 = 3k+1
so @light flicker i've realized that p^2+2 is prime only when p^2+2 (mod 3) is 1 or 2. setting up equations for both scenarios is p^2+2=3k+1 and p^2+2=3k+2 and further simplifying those 2 equations i get p^2+1=3k and p^2=3k
so what im thinking of now is to claim that
Can p^2 + 2 ever be 1?
Can it ever be 1 mod 3?
Just check all the possibilities
There are only 3 of them
(also fermats little theorem, but you don't need that here)
oh i see it with fermats little theorem
when you say 3 possibilities, what possibilities do you mean?
The value of n^2 (mod 3) depends only on the value of n (mod 3)
I.e, if you pick 1,4,7,10,... The square will always be 1 mod 3
its 2 only when n is even, right?
Uh what no
ok fail
thanks, i get it now
Do you see how to finish the problem
That one was a fun one :D
if n is 3 mod 8, and k is a positive integer at least 4, prove that n^(2^(k-3)) - 2^(k-1) - 1 is divisible by 2^k
can i have a hint
i tried some weird induction/mod stuff
but i haven't gotten anywhere after a while
@supple furnace
<@&286206848099549185>
use the lifting the exponent lemma on $n^{2^{k-3}}-1$
Merosity:
||it turns out to be exactly divisible by 2^{k-1} so combined with 2^{k-1} it's divisible by 2^k||
lol
sorry didn't realize you wanted just a hint
I'm sure there are other ways to do this too, just the first way that came to me.
for p=2 and n even, v_2(x^n - y^n) = v_2(x-y) + v_2(n) + v_2(x+y)-1
stop deleting your messages lol
also you need p| x-y but not x and y individually, don't forget that either
I should learn LTE rip
did you hear about how I proved a case of LTE in a paper I'm writing up but never realized that it was LTE until someone talked about it here
yeah I remember that the other day
or maybe month or more now haha
also the ultrametric inequality makes simplifying it quicker too @still granite if you've heard of that
@light flicker I heard you did your presentation on it the other day right?
poster yeah
I think I downloaded it and was going to read and ask questions about it but I forgot
you said a while back you actually talked with silverman and he like said a bunch of stuff really fast about it or
I'm kinda interested in knowing what your thing is about I kinda want to get up to speed on that sounds interesting
Well what happened is we were stuck and asked Silverman for help and he basically solved our problem
I could send you the draft of the paper we're writing, I don't think it's super complicated stuff
ok sure sounds good, I guess dm it to me or something
also as far as the LTE goes, I found it easier to remember cause there's a more general similar p-adic theorem about strictly differentiable functions, there's always some open ball centered at a, given f'(a) != 0 where
$|f(x)-f(y)| = |f'(a)||x-y|$
Merosity:
LTE is f(x)=x^n and a is a unit
@all functions are Lipschitz
how do i find deriv respect to t when (h-r)/r = h/5
Wrong channel
how did i get in here lmao
was just looking at this now
am i misunderstanding this question or why does my argument seem to be so simple
if integers are of the form 11, 111, 1111, ...
then every 3rd integer their digits sum up to a multiple of 3
111 is divisible by 3 because digits sum to 3
111,111 will also be divisible by 3 because digits sum to 6
so doesnt this question become trivial to answer?
What does this question asking us to do?
Show that any product of any set of numbers of the form 6n+1 is again of the same form
Do you understand what it means for a number to be of the form 6n+1?
Yes
I think so?
refers to the set of numbers with the elements 1, 7, 13, 19... right?
So we're trying to prove that a number of the form (6n+1) x another number of the form (6n+1) = (6n+1)?
Technically this statement says more than that
I don't understand what it is actually asking us to do in this case
yep once you edited its ok
No Godel
so you just expand and factorise it?
why not?
That seems too trivial
wait i might be wrtong
It says the product of any number of things of the form (6n+1) is also of that form
Which
Follows from what you said
But
just need to show for 2
no actually the statement says sth more
Hmm
ANY number of numbers of that form are of that form
no matter how many numbers of the form 6k+1 you multiply, you will still get one of the form 6k+1
Show that any product of any set of numbers
I see it now
ANY product
Okay nvm I don't see it
"Show that any product of any set of numbers of the form 6n+1 is again of the same form" - What does 'any product' mean
So
Any product, meaning, for example (7*13*13*13*13) still is of the form 6k+1 for some k
(6n+1)(6n+1)...(6n+1)=(6n+1)
no, those 'n' may not be the same
where none of those n's are equal
whip why are you saying yep
where clearly its not right
and then you say Eh no HEre
where none of those n's are equal
no , they MAY be equal
Oh
WhipStreak23:
this seems like some major over thinking here lol
But I thought we don't have repeated elements in a set
you can
Wait, really?
yes, because it says any product of ANY SET OF NUMBERS, so, first set might be {7,13} , second {13,19}, then 13 will appear twice in the product
n_n lmao
lol
how can you multiply sets
Show that any product of any set of numbers of the form 6n+1 is again of the same form
read this
before typing `10000 lines
Guys relax
@spare tangle have you learned about induction?
@spare tangle just work through the algebra of expanding this (6j + 1)(6k+1)=(6l+1) thing you typed earlier
yeah
So it should just be proved by induction?
how does that account for repeated elements though
nvm repeated elements would also be of the same form
technically, but I don't think it's worth really doing more than just mentioning it
think about the induction step here.
Yea
@torn escarp well, but only then the product of two elements what you wanted him to do makes sense
I'm aware
which is obvious to you, but not for him
I'm also aware of that
so just show that the product of two elements is of that form
so why did you say not weorth to do anything more than mentioning it
this is spinning wheels violently not getting anywhere lole
and then I can just mention that by induction this is true for any number of elements?
yeah
you should show the case for 2 elements and how knowing about n implies it works for n+1
it's obvious, probably this guy has been multiplying numbers his whole life, to multiply 10 numbers together you pick two next to each other, multiply them to make a single number and now you have 9 numbers
rinse and repeat
call this "induction" sure, it's belaboring something that's obvious to most children imo
I mean it makes sense but seems rather trivial
yeah just go forward with (6j + 1)(6k+1)=(6l+1) and showing l is indeed an integer
that's really the only step that's "hard" lol
if you understand it then dont type it out
idk the girl next to me mentioned a proof by contradiction
something about (6n+1)(6n+2)(6n+3)
does that trigger any useful ideas?
It can be generalized
yee
Hey, I'm struggling to express 1 as a linear combination of 50 and 41
Bezouts identity
I know, but I'm not quite getting it
I've gone through a couple of sheets of paper now xD
You're using the euclidean algorithm?
Yeah
repeatedly applying the division theorem
and then just going backwards from the last step
Maybe let me see your work
seems about normal, just be careful
you can also sometimes get shortcuts by using negative numbers but I don't think it'll be too helpful here, like for instance where you did the step 41=9*4+5 you could have done it as 41=9*5-4
might save you like, only a single step in this particular problem cause the numbers are so small doesn't matter
Btw, I still didn't understand how to do this question
4i
Proof by induction would only prove that the product of n * succ (n) takes the form 6n+1
You're not understanding how we're inducting
Kindly do explain then
just read what mero sad
So you mean you're using the result of this induction to prove that cumulatively all products would take that form?
Sort of like, recursively form every number as a product of n and succ (n)
don't "succ(n)" anything
why not
you're overcomplicating something that's very easy
you have some kind of fundamental misunderstanding I guess, I don't know
explain in just simple english what it means for a number to be of the form 6n+1
that it's one more than a multiple of 6?
That the product of any numbers of that form is of that form
so what would you do to convince someone of that
well, after seeing what you've said
I'd convince them that if the product of an element in the set and the next element is of that form
then it would hold true for all elements in the set since you can form them all in terms of products of the original element and the successor being referred to
sure
Is that sarcasm?
no, just not sure what to say
I mean, is there a fallacy in that logic?
if you are convinced then I guess I'm convinced
what doubts do you have?
part of knowing why something is true is knowing what isn't true
I can't really tell if you're just saying this but you don't believe it yourself or not
if there's something about it you don't believe, then say it
I'm not psychic
like apparently you're here with some sort of doubt but
every step along the way you seem to be just producing and agreeing to
so why are you here?
@spare tangle
this isn't rhetorical I'm trying to help you refine your question
sorry on the tube no signal
Well, I guess I don't fully agree with all of my statements or rather I don't fully understand them
Particularly the inductive bit which means that it would hold true for all elements in the se
set*
hey there
Hi
can i get a tldr?
of all of this?
just say no
of what you need help with
I guess alternatively let's pretend you have to prove that the product of N integers is an integer
I'm doubting the inductive logic in proving that the product of any elements in the set of integers given by (6n+1) is of the form (6n+1)
That's the tldr
what's the product of two such numbers?
@stray helm you ready to help instead of me?
I mean suppose you have the second element times the fifth element
thanks for the tldr!
good luck have fun
@torn escarpsure ill take over
Thanks a lot @torn escarp
yo
i want you to think of the solution alright, i will only guide you to it
yo I can take voer I love induction
first of all, why do you think induction works here?
@sacred junco lmfao but na i can manage
thanks
Well you can definitely prove that the product of an element and its successor is of that form
so you can prove that the entire product of the elements of the set take that form
but it's not just about the product and it's successor is it?
it can be erm, 6(1)+1 and 6(3)+1 too yeah
cant each element be written in terms of the successor of the first element
like how
so in terms of the products
the product of the first element and its successor take the form 6n+1, the product of the second element and its successor also take that form
so if you get to the point where you kinda have a cumulative product?
so this proves that the product of each element in the set and another element in the set must be of the form 6n+1?
No?
How do you define 'first,second element' and a successor in this problem?
Since you can construct elements in the set using the form of the product
Well, because the question started out with primes
We had already defined n > 0
do you mean to say that [6(1)+1] [6(2)+1] is of the form 6n+1?
Yes
it's a good idea, but do you think it hits all such products?
it doesn't
nope it doesn't
but my question is if all the products are rewritten in terms of the original
wdym by the original
what would be the original of
[6(1)+1][6(3)+1]?
at some point all elements can be rewritten as a product of succ in the set, right?
I mean that when deaing with super large numbers
Like, theoretically
all elements can then be written as a product of some n and succ(n), right?
why do you think that?
idk
The thing is, in your problem, there isn't a 'minimal' element
gut feeling
do you have an idea for a proof?
Unless you define it in a different way, 7 isnt it
nope
I mean I just think that when you have large enough numbers you can define them as the product of two successive? elements in the set
I don't know if it's true
nor can I prove it
Idk how to prove it then
so na, i don't think your conjecture is true
And even if it was, that wouldnt cover all the possibilities
erm a counterexample could be
[f(1).f(3).f(5)] [f(7).f(9).f(11)]
where f(n)=6n+1
see these are in their "smallest" state
because f(1).f(2)=f(15) right
yeah
so, let's forget about your idea alright
Yeah
lmfao
I'm on my pgone
new meta
CUT ME SOME SLACK
no its nice
it's beautiful
ahahahah
okay so
by "how" they look like, erm ye you were right
but we need a product of two(2) such numbers
how would the product look like
SWEET MOTHER OF MOON you got it
That's in the trivial case
no
no
thats a case you will be missing if you dont include it
no
and didn't think it requires further proof
[6(7463377)+1][6(7463377)+1] aint trivial my boi
I mean sure if you proved that then its fine
itt does require proof ma guy
it's fine
I mean its the easier version of the base case you will have to show so I guess its fine
right, done
You know the funny thing is, in my head I was thinking that form all along, but I said m = n+1
what do you get?
(6n+1)(6m+1)=36mn+6m+6n+1
See what?
it's of the form 6(
)+1
How?
you tell me
oh

Dude
it's sad that I
WROTE ALL OF THAT
And then let
m=n+1
because
I was so fixated on induction
😂 😂 😂 😂
KEKE
(earlier)
happens
so
induction can be a hoe sometimes
do we have to show the trivial stuff
you shouldn't let her control you
ehhhhhh?
you take that back wolf I love induction
m=n?
@sacred junco i just love her too much, and i suffered
that the brackets
write it explicitly
6mn+m+n
which is.....
why did I ask you to solve for k?
No I meant
Do I have to explicitly state
that's an integer
which belongs in the set
HJJIIIIJNNNNN IRRATIONAL
by saying do I have to show that the brackets belong to Z
actually yeah, but it's trivial right
m.n is in Z
hence 6.m.n in Z
hence 6.m.n+m in Z
Yeah
ik?
hm?
what's ik
a typo
*in
ah
Thanks a lot btw
NOW FOR GAUSSIAN PRIMES AND OTHER SHIT THAT I DON'T UNDERSTAND
😂 😂
I didn't anticipate this homework would take this long
🤙 🐺 🤙
yes u noonberry

Solving my first diophantine equation
Need to show that 5x^2+2=y^2 has no integer solutions
This is what I've done
I take mod 5 of both sides and show that they are not equal
5x^2+2 mod 5 -> 2
y^2 mod 5 -> {0,1,4}
since there is no overlap, the equation cant be solved
does this work?
Yes
yeey!
have you tried using the hint
I'm not sure what to make of it
so, suppose we have the s = a +bi and t = A + Bi
We can find s/t, in terms of a,A,b,B but I'm not sure where to go from there
It's not a coincidence that they use the letter q there in the hint
as well as having the letter q be one of the things you need to exists
yeah but how would you show that there's a remainder?
if applied multiple times?
also don't you have to show that the quotient is less than s?
where in the problem does it tell you to do anything like that
I mean if s = tq + r
also, it makes no sense to compare complex numbers
Again, the problem doesn't tell you to do any of this
So what exactly is it asking then 😅
you can read
I cant understand this article. Why is it necessary https://brilliant.org/wiki/bezouts-identity/https://brilliant.org/wiki/bezouts-identity/
why is it a necessary condition.
did i do this wrong, how do you post a new question
This article is not brilliant, its full of logical gaps.
This is one of the reasons i hate number theory.
It like people write stuff and never look back (like they are in a hurry), and typos abound.
right, by definition
so maybe think about gcd(a,b) and ax+by
Im not sure what they mean by 'this condition', and what equation.
They're trying to show that all integers of the form kd can be written as ax + by
I.e., ax+by=kd
What they're noting in the thing you've highlighted is the converse statement
That if ax+by= c, then c = kd for some integer k
and d here means gcd(a,b)
yes
" all integers of the form kd can be written as ax + by" that means there exist integer solutions x,y such tat ax + by = kd
yes
ok and where is the converse here
the author doesnt say where the converse begins
what does that mean?
it was proven earlier usually
what exactly are you lost about
for someone learning this the first time, idk
i dont get it, it makes no sense.
what is the necessary condition?
this paragraph is trying to prove the convers?
"That if ax+by= c, then c = kd for some integer k" like I said earlier
This is the necessary condition
I mean yes, but not where you're highlighting
anyways. thanks for your help
Maybe a piece of advice
It's pretty clear you're not really familiar with proofs or higher math at all
So you should familiarize yourself more with that before trying to read these things
Yes there are a lot of logical gaps here, but they are logical gaps that you could fill in if you understood what they were saying
And that's why people leave logical gaps, so the reader can check that they're understanding what's happening in the proof
but it doesnt make sense, because bezouts identity says ax+by = d has a solution, not ax+by=kd has a solution
if we start from bezout's identity on the page
you dont have to insult me by saying i dont understand higher math proofs. i am familiar with proofs
Sure
this is bezouts identity
And they they take bezouts identity and multiply it by k
no they didnt multiply by k, they just said its a necessary condition
i mean i guess it was obvious to them?
They write d=ax' + by' for bezout's identity
then the next line is
what they are actually proving is , one sec
that was a proof for the converse
this is the statement they are proving
" ax+by=z has an integer solution x,y,z if and only if z is a multiple of d=gcd(a,b)."
its an iff statement
so the necessary statement would be, "if z is a multiple of gcd(a,b) , then ax + by = z has an integer solution", do you agree
by the way, brilliant.org is supposed to be for math beginners
No that is the sufficient condition
right
so the necessary statement would be ' if ax + by = z has a solution, then z is a multiple of gcd(a,b) '
Yes
for integers x ,y,z
well i dont see how 'we already know that'
since thats not bezouts identity
wait, let me think
no i dont see how we already know that
the only thing given was bezouts identity
yes
so what about ax + by
it divides ax + by
what divides ax + by
gcd(a,b)
and so you're done
if ax + by = z has a solution, then z is a multiple of gcd(a,b)
huh?
gcd(a,b) divides ax + by like you said
that doesnt prove that if ax + by = z has a solution, then z is a multiple of gcd(a,b)
gcd(a,b) divides ax + by yes?
if it divides the left side then it divides the right side lol
its true because ax+by and z are literally the same number
idk you guys handle this I have a party to be at
so if gcd(a,b) divides z , then z is a multiple of gcd(a,b)
lol have fun zoph
this is not obvious at all. how can someone in high school know this
brilliant.org is targeted towards high school students
this article is written by an indian professor who is sloppy af
