#discrete-math
1 messages · Page 101 of 1
Yeah, that's one way to look at it
But, we cannot write {1,5,5^2,..}?
So, in this case the definition would be b = a*n where n is an integer?
Oh yeah
When people write a^n, they mean the group operation applied to a , n times
They don't mean a to the nth power
argh
it takes some getting used to
but in general multiplicative notation is much prefered
My teacher told* us that definition
Usually additive notation is used if the group is abelian
and multiplicative notation is used if the group isn't necessarily abelian
convention mostly
And the fact that addition of things is usually a commutative operation
Whereas multiplication, like multiplication of matrices for example
Is not always commutative
That looks good
tbh i'm just lazy and write $gh$ instead of $g \cdot h$, so multiplicative notation is natural
Lochverstärker:
I think I should stop for today and let the brain absorb the material now
they arent axioms, theyre formula
P(A and B) = P(A) * P(B) when A and B are independent events
it really does answer your question
https://en.wikipedia.org/wiki/Independence_(probability_theory)
This is a fundamental notion in probability theory, as in statistics and the theory of stochastic processes.
Two events are independent, statistically independent, or stochastically independent if the occurrence of one does not affect the probability of occurrence of the oth...
They're the same formula
just that " P(A and B) = P(A) * P(B)"
is a special case of the first one, where the cases that satisfy both A and B are non-existent.
What’s the formula to do this?
From 1000-9999, how many numbers are divisible by 5 and not by 7
@weary tiger hmm
@distant hamlet Try counting 5, then 5 and 7
@weary tiger okay so each triangle must use 3 different colours
considering picking each triangle in turn
@weary tiger pick any first triangle
then consider all possible second triangles
Since colours can be exchanged around, it must be the same number of possibilities for any first triangle
might be able to do it by considering the triangles, I haven't thought it through completely
each triangle has to have each color on every corner, so there's 3! ways to place the leftmost triangle.
then there are 3 ways to place a triangle next to it so that it doesn't clash with colors
again 3 ways for the one next to that
so 3! * 3 * 3
seems like a fun problem to try to generalize
for k triangles of course 3!*3^{k-1} but suppose instead it's a complete graph with n vertices connected in a similar string of k of them at n-1 places
I'd guess the solution is n!*n^{k-1} for that
oh it won't be, where the two complete graphs forms a complete bipartitegraph with n-1 vertices in each partition minus the equal pairs so there are (n-1)^2-(n-1) = (n-1)(n-2) not n
so that generalization would have solution n! * [(n-1)(n-2)]^{k-1}
What is homomorphism?
I have read the definition but, unable to figure out what does it really means
Are you referring to a group homomorphism?
Yep, group one
how the structure is preserved?
for groups depends on like the operation
a homomorphism is a function between two groups that preserves the binary operation
like
^ listen to ann
Like, say we have two groups $(G, \circ)$ and $(H, \star)$. Then a map $\varphi: G \to H$ is said to be a homomorphism if $\varphi(u \circ v) = \varphi(u) \star \varphi(v)$.
a function f: G -> H is a homomorphism if f(xy) = f(x)f(y) for all x, y in the domain
cool af
The idea is to generalize stuff like det(AB) = det A * det B and log(xy) = log x + log y
Composition in the inputs results in the composition of the outputs, that's the structure being preserved essentially.
i have a question about this ye
Beautiful
why does this happena lot
why does this happen alot*(
like that condition
of morphisms
why is it like everywere in lower math
lol
a good exercise is to check that all homomorphisms preserve the identity and inverses
ie the identity of the domain gets mapped to the identity and inverses get mapped to inverses
What book did you guys use to solve questions on group theory?
ann's problem set
Abstract Algebra - Dummit & Foote has quite nice exercises
i think just use youtube if you cant get textbook imo
like lectures or whatever
or just look for tests on google
@stray reef Could you please send your problem set? (If possible, solutions as well)
i remember linking it somewhere here
I have heard good about Dummit & Foote.
Thank you very much for helping out guys! This server is one of the reason why I am progressing in Mathematics.
@stray reef If you find it, please send. Thanks!
ok gimme some time
difficulty ranking
@cerulean ore
the more stars the harder the problem is obv
Thank you!
Is 5 stars meant to represent an open problem à la Knuth?
not really no
5 stars is something a good student of intro group theory would spend at least an hour thinking on
I see
Hello there, I failed discrete math twice in university, so this time I have to get it down.
how can I become a god at discrete math in the next 6 months?
is there a good platform with tons of excercises?
I am on the step of checking if there is existence of identity
a*e = a = e*a
For a belongs to Q
a*e = a+e-ae = a e(1-a)=0
e!=0 since e also belongs to the set Q and Q is the set of non-zero rational numbers
So, the system is not a group, right?
Nope, not a group
Aah, thank you!
(1) for i=1 to 4n
(2) ---- for j=1 to i
(3) -------- print (i,j); How many times is (3) executed? I'm having a little trouble with this one. I got...
It also says "Express your answer as an efficient formula in terms of n"
just in case that was important
whoops
that first total number was from something else
ignore that
tbh i have no idea what you calculated there
is "total number of combinations" supposed to be your answer?
yeah it was totally messed up, I did this problem over another problem I did earlier. Hopefully this is a little more clear?
I used the handshake principle
your final result probably shouldn't depend on i
that's what i was wondering, the online HW won't even let me type i
because that makes no sense, the answer only depends on n
as i is only used in the first for loop
so i'm not sure what you're calculating
oh
for questions like this it's always best to just do each loop individually starting with the inner most
e.g. in the innermost for loop the print statement is executed $\sum_{j=1}^{i}1$ times, can you see why?
Lochverstärker:
yerr, j starts at 1 and goes to i; i = 1 the first time so it's executed 1 time. Then when i = 2 j goes to 2, so 1 + 2 +... etc. right?
well, yes
but
but at that point i wouldn't even think what happens for different i
actually wait
when i=2 this isn't executed 3 times
just the inner for loop
well I'm just adding up the total number of iterations. When i = 1 line 3 is executed 1 time. When i = 2 it's executed 2 times. Adding it up it's 3 total iterations so far
@cerulean ore i'm in the process of writing a solution key to that group theory problem set i posted, if you're interested
well, yes but that's for the whole algorithm
i was talking about just the inner for loop
so line 1 has no relevance?
not right now
first step we just want to know how often the print statement is executed in the inner for loop
at this point the answer can also depend on i
if it's j = 1 to i then what's i
right. and line 3 is executed i times 4n times?
oh okay
so the outer for loop basically just does one thing
it executes the inner loop
and the outer loop runs from i=1 to 4n
and every time it runs, it executes the inner for loop and line 3 is run i times each time
right
so in the first iteration of the outer loop, you get line 3 run 1 time, then 2 times, then 3 and so on
mhm
until the last iteration, then it's executed 4n times
because that's how long the outer loop runs
i am not sure what you mean by handshake principle
err it's how my professor and my book came to the formula n(n - 1) / 2 sorta
hold on
n - 1 at the top right would be 4n in this case i think
was it close?
Lochverstärker:
and you correctly observed, that you have to replace n by 4n in this case
you are missing one term
- 1?
the last 4n
depends where you want to add the +1
((4n)^2 / 2) + 1?
or if you look at your image
you missed to add a 4n in the second line
because the idea is kinda to add every term twice
that's why you divide by 2 after
ye
then you get 4n+1 = (4n-1)+2 = .. = 4n+1
- i mean
and there are 4n of those terms
so you get 4n(4n+1)
and because you added every term twice, you have to divide by 2
how do you write a factorial of a number up to a certain point? Like 76543?
$\frac{7!}{2!}$
Lochverstärker:
oh k thanks
.>
reddit is a terrible platform to get help on math homework
Gotta love the "how far have you gotten" it weeds out the many
yeah
usually the first thing you do when trying to help someone is ask more questions
can't really do that on reddit and if i get no reply on discord it probably wasn't important
also a picture of homework is no question, so i guess the just wanted to share something 🤷
no
it's on my application list for phd
i still got some time until that though, maybe i will change my mind
but it's probably best german university for math
Hello
I wanna see if I'm understanding reflexive relations and symmetric relations correctly.
so, let's say you have the set
x = {a,b}
to have this symmetric, you do:
(a,b), (b,a)
right?
and to have reflexive and symmetric you do:
(a,a), (b,b) (a,b) (b,a)
?
For symmetry, you don't necessarily need those
A better example might be on the set {a,b,c}
The relation {(b,c), (c,b)} on {a,b,c} is symmetric
oh gotcha right right, but to make that reflexive, I would have to do (a,a) (b,b) and (c,c) right?
Correct
Ok cool so I would only need to do (b,a) if I already set (a,b)?
otherwise, no need?
Yeah
the empty relation is symmetric
how is this set transitive and symmetric?
nvm symmetric makes sense
actually nvm it makes sense
Can anyone explain what determines if a set is anti symmetric?
@weary tiger this talks about relations, not sets
i guess a relation is a special kind of set
but it doesn't make sense to say a set is antisymmetric
also your book/notes should have a definition
@pale epoch yea relation, sorry
It does have the basic definition, just wondering if anyone could give an example and explain how it works the way it does
Book just says if a is related to b and b is related to a then it is anti symettric is a=b
an example would be less than or equal
on the natural numbers
if you pick any two natural numbers n, m
and you have $ n \leq m$ and $m \leq n$, then $n=m$
Lochverstärker:
because a number can't be both smaller and larger at the same time
how did you even get 720 ways to arrange the lamps
this already seems wrong
because the lamps of the same color are indistinguishable
ok, yeah, my bad
Hey
4 heads on 7 flips does not happen with probability 1/2
yes you did
yes now that is actually 1/2
reason what
you can put the configurations of 7 coins with >=4 heads in one to one correspondence with the configurations with <4 heads
by turning all the coins over
so there are as many of the former as of the latter
and as such both events (heads >= 4 and heads < 4) have the same probability bc the individual configurations are equiprobable
you can't do the same thing with "exactly 3 heads on 6 flips"
i mean. (6C3) (1/2)^6 just isn't 1/2. that's it.
...
what
are you trying to get me to give you some sort of Universal Rule™ under which the probability of a certain event is 1/2 or what
there are as many outcomes that are part of the event as there are that aren't
a configuration with k heads can be reversibly transformed into one with 7-k heads by turning each coin over
it's not a "general rule" at all.
it's just a bit of symmetry specific to this problem.
my group theory problem set, updated and cleaned up
see next message for answer key
@cerulean ore
in a set z = {1,2,3},
is
Z U {(1,2)}
Transitive because 1 --> 2 --> 2 ?
and 1 has a direct link to 2
what do you mean
1 and 2 is in the set 1,2,3
Just looking at this and making sure I understand it
Z is not {1,2,3}.
@stray reef Thank you very much ann!
could anyone help me start this proof? I tested it for x = 1 and n = 2 and yes, it is true because (1+1)^2 > 1 + (2)(1) or 4 > 3
This is what I am thinking so far
Base Case:
(1+x)^n > 1+nx for all x>0 and n>1
Inductive Hypothesis:
Assume P(n+1) true
Inductive Step
Algebra?
Am i going in the correct path or am I totally wrong?
Would P(n+1) be the base case and P(n) be the inductive hypothesis?
Not at all
That means (1+x)^n > 1+nx for all x>0 and n>1 would be before the base case?
That's the whole statement you're trying to prove
Ok my starting point is (1+x)^n > 1+nx for all x>0 and n>1
Now I need to figure out what my base case is
Maybe the base case is to use x>0 and n>1 to show how its true?
not sure what you're saying here at all
What i'm basically saying is to plug in numbers for x and n
I think you should think about what you want to induct on
Ok my starting point is (1+x)^n > 1+nx for all x>0 and n>1
Ok my starting point is [the thing you're asked to prove in the first place]
I'll come back later maybe by then I'll have an idea
Dang I have no idea
All I know is to plug in a number then use n+1 somewhere to assume its true
think of what a base case means again
it would be something like n = 2 or x = 1 or something of that form
hence the term base case
when you use induction, you're trying to show that, from one point, you can take a step past that, and that each step you take holds true.
so: you prove that it holds true at the base case
then, you assume that it holds true for some arbitrary integer
(that's the inductive hypothesis[I.H.])
then you use the I.H. to show that it holds true for one point past that arbitrary integer
Use the induction for n then for x
here's a starting point, take (1+x)^n > 1+nx and then multiply both sides of (1+x). Since x is positive, it won't change the inequality sign. See what you can do from there.
Thx guys I think I figured out how to do it
It should be similar to this now
P(2) 2^2 > 2+1
P(k) 2^k > k + 2
P(k+1) 2^k+1 > k+1+2
2k+2 > k + 3
Sorry just writing down some notes
2k+2 > k+3
hi
i need help with a logic gate problem
ive been sitting here stuck on it for the longest time
i am a dead end
So circuits can branch. But each gate can only take in 2 inputs.
this takes more creativity than i can come up with
any guidance i can get for this?
tf
the requirement is basically (p AND q => NOT r) AND (p XOR q => r)
and you can rewrite this just using AND, OR and NOT
which will give you a solution
for example (a => b) is equal to (NOT a OR b)
@trail cobalt
thank u, ill see what i can get from that
I did it! Not with that advice, but thank you anyways!!!
I've read and read through the book to understand how to answer this, and cannot figure it out. Intuitively it looks like its n^3, because it would be n^3 asymptotically right?
If that's a word
So k = 3...
It feels like I am wrong through, and even if I'm right I don't understand how to get 3 without just looking at it and knowing that n^3 grows the fastest
Just prove from the definition that it is O(n^3)
It might help to note that log n < n
then prove anything below 3 won't work
Any recommandations on books or resources for discrete math?
Kinda like Strang for linear algebra
rosen discrete math is the standard ig
but you can find many playlist lectures on discrete math
on youtube cuz like discrete math is popular for some reason
gl hf
Insulting Ancient Greek Math ... Dis-Crete Math 🙂
I really need help with this one question... how many 7 letter permutations can be formed from 5 identical H's and 2 identical 2's?
I just figured out the formula... why do you put the factorials of the numbers of duplicates on the bottom?
well, what is the formula you found?
whoops
$\frac{7!}{5! 2!}$?
Lochverstärker:
n! / r1! * r2! * r3! * etc when n is the number of elements to choose from and r is the number of certain duplicates
yeah that
why are 5! and 2! on the bottom
because when you have 7 elements in a list you have 7 different ones to choose from, then when you pick the first one, 6, 5, 4, etc.
so let's assume our 2's in the example are not unique
i will call one of the 2's 2 and the other 2'
then you would consider HHHHH22' different from HHHHH2'2
because our different 2's have swapped place
thus those are different permutations
but in your example the 2's are identical
so we don't want to count those as separate permutations
now if you imagine any permutation of 5 H's and 2 2's
if the 2's are considered different, they can always switch places, to create a different permutation
so in the 7! you are actually counting twice as many permutations as you want
hence you divide by 2! = 2
the same applies to the H's
ah
because there are 5! ways to arrange 5 H's
and in each permutation you can arrange rearrange the H's and 2's independently to create a "new" permutation
got it, makes sense
How do I simplify this, my book is not helping, @ me when you respond since I'm doing a million things at once
well, what have you tried @loud sage ?
A lot of different stuff that makes it hard to explain through discord
that makes it difficult for me to help you through discord, sorry
Alright, well let me try to put it into words
I've tried ((k+1)(5(k+1)-4))/2 + (2(k+1))/2 in a couple different ways
Working on trying (k(k+1))/2 + (2(5(k+1)-4))/2 right now
To try and simplify it?
Ah
Is it possible to prove that 2x-3y does not equal 0 if x and y are integers and both x and y do not equal 0?
No because that's not true
why is it not true?
I did, I believe I did that wrong, as I did it in my head and hadn't gotten scrap paper out yet, and don't know how I got to there
ok, then first try to correct that
because it makes no sense to try and simplify a wrong statement
if u have an existential statement like (E x,y,z in Naturals) , x , y, z can all be equivalent?
then let's start at the beginning, what is P(k+1)?
Yes of course
without simplifying it
What is it? It's the thing we're trying to prove is true
yes, but you know what P(n) is
Isn't that the equation?
you know $P(n) = \frac{n(5n-3)}{2} = \frac{5n^2-3n}{2}$
Lochverstärker:
now i want you to write down P(k+1)
because your general goal is to take P(k+1) and then write it down as P(k) + something
so you can use your inductive step
Wouldn't p(k+1) be basically replacing n with k+1 ?
"For all x,y,z in integers, if x/y and x/z , then x/(3y-5c)" How would I prove this directly?
terribly sorry
I have no idea what's right and wrong at this point
well, i can try again
but i would need you to tell me the first line of your equation
like what did you start with, when you arrived at your $\frac{5k^2+k+1}{2}$
Lochverstärker:
Well I did the wrong thing (I think) but I did $\frac{(k+1)(5(k+1)-4)}{2}$ - $\frac{2(k+1)}{2}$
Rainy:
Rainy:
well ok, that is both wrong
tbh this question is terribly written
i am not even 100% sure it is asking what it should be asking
Here is the rest, but I figured this was a given
It also says this
"Prove the statement using mathematical induction. Do not derive them from Theorem 5.2.1 or Theorem 5.2.2."
But these are the only induction theorems in my book...
but your goals should be to show that $1+6+11+16+ \cdots + (5k-4) + (5k+1) = \frac{(k+1)(5(k+1)-3)}{2}$
Lochverstärker:
and you are allowed to as a fact that $1+6+11+16+ \cdots + (5k-4) = \frac{k(5k-3)}{2}$
Lochverstärker:
so, because i fucked up earlier i can try walk you through this
(and in the process give you the solution)
(at least mostly)
If I can understand how to solve it through walking through that's all I need, screw the problem, I just want to understand how to solve this
to be honest my suggestion would be to check an easier induction proof first and see if you fully understand that
by easier i mean less notation
i hope your book proved $1+2+\cdots+n = \frac{n(n+1)}{2}$
Lochverstärker:
i mean this is basically the same thing
but more notation
and tbh there are a probably a ton of videos on this, and video form is probably easier than discord
second best to irl
I understand the basic version
the book did prove that $1+2+\cdots+n = \frac{n(n+1)}{2}$
Rainy:
ok, then let me try to walk you through your current problem and pointing back to this
kk
so for the "simpler" proof
Lochverstärker:
Right
Lochverstärker:
and and (n+1) to the end of it right?
and arrive at $1+2+\cdots+n+(n+1) = \frac{n(n+1)}{2} + (n+1)$
Lochverstärker:
so yes
then we simplified that further
so back to your problem
here we start with $1+6+11+16+ \cdots + (5k-4) + (5k+1)$
Lochverstärker:
and we know that $1+6+11+16+ \cdots + (5k-4) = \frac{k(5k-3)}{2}$
Lochverstärker:
so we get $1+6+11+16+ \cdots + (5k-4) + (5k+1) = \frac{k(5k-3)}{2} +(5k+1)$
Lochverstärker:
this is what in your question is the left side
so if you simplify that further, you get the answer
is this what you tried to do?
I did this: $1+6+11+16+ \cdots + (k+1) + (5k-4) = \frac{(k+1)(5(k+1)-3)}{2}$
Rainy:
Which I see is wrong
Lochverstärker:
and i gave you the left hand side above
i suggest you to look at how i derived it again at some later time
and compare it to the "simpler" proof
anyways
ah
I thought it would just be k+1
ooooh.
it starts with 1+6+11+16 and so on
Oh okay
I hate this book because it did all of its examples in cases of ones, so when I get to this, I don't know what carries where
So I'm trying to simplify $1+6+11+16+ \cdots + (5k-4) + (5k+1)$ now
Rainy:
are you learning from a book exclusively?
yeah, online course was the only available option
ok, that sucks
I agree lol
well, i did the simplifcation above for you, but yeah
Everything else has been easy enough so far
this is the "left side" the question asks you to simplify
Oh the right side of that is the simplification
not completely done, but yes
Yeah I need to convert it to this
i would suggest you to walk through it yourself either way
either now or at a later time
$\frac{k(5k-3)}{2} + \frac{2(5k+1)}{2}$
Rainy:
Lochverstärker:
and i think you can take it from there
so the left equals $\frac{5k^2 - 3k +10k +2}{2}$
Rainy:
yeah, seems correct
sorry for the confusion at the beginning
i hope i could at least somewhat help now
(if you want extra training you can "invent" similar statements btw, like the sum of the first n odd/even numbers)
That did help a lot, I have a firm grasp on that concept, but next problem is throwing fractions in there, would it be the same rules?
Same questions, just with this equation
the overall idea will always the same
like, you take that sum plus "the next term"
then use the hypothesis to simplify
and arrive at the correct right side
This one is going in increments of 1 so it should be simpler in that aspect, I was struggling at first but I realize that now
what would you say is "the next term"?
1 over 3*4
i mean after $\frac{1}{n(n+1)}$
Lochverstärker:
Oh you mean what does it turn into, I'm still working on that
oh wait
it would be n+1 wouldn't it
i think i'll let you work on it
and i should probably go to bed, i hope someone else can help you further
Thanks for the help
I'm not getting this one, this one has me stumped
Rainy:
I've tried setting it to be $\frac{k+1}{k+2} + \frac{(k+1)(k+2)}{k+2}$
Rainy:
I have no idea what I'm doing wrong
<@&286206848099549185>
Are you confused on the right side of P(k+1)?
I'm confused with both, I just have been attempting the right because it seemed easier
If I got an answer right, I could then try to get towards an answer on the other side
@loud sage
?
Add $\frac{1}{(k+1)(k+2)}$ to both sides
pocofrosty12:
after converting n to k+1 right?
No because if you add the fraction above, there is no need to convert n to k+1
Hm
You are going from P(n) to P(k+1) not by substituting both sides, but by adding what the next term would be
On the left hand side, it will be
pocofrosty12:
Then the right will be:
So why $\frac{1}{1*2}$
Rainy:
That's the first term
I don't know how to do the ... notation xd
Pretty bad at LaTeX
- should be a multiplication sign
Rainy:
Meaning the left side? I'm not sure what part the 1 / 1*2 plays in this
Take the sequence on the left hand side and add 1/(k+1)(k+2)
Property of equality means we can do the same on the right side, so the 2 sides stay equal
pocofrosty12:
Wouldn't that be $\frac{k(k+2)+1}{(k+1)(k+2)}$
Rainy:
Yep and you can simplify further by distributing the top and factoring that
which is?
$k^2 +2k+1$
Rainy:
And the bottom you can distribute too
no
Why not?
Don't distribute bottom, just factor k^2 + 2k + 1
Pro tip: In fractions with polynomials, it is generally better to leave all the "factors" undistributed so you can cancel them more easily
what do you get at the end
pocofrosty12:
What does that look like
The right side
Yep and the proof is complete
Thank you, there's one more that my book doesn't even go over (I will never take an online math class again)
Which one?
For the top one? random numbers with no reasoning as I had no idea what it was asking
Try doing partial sums
So like what if n=1 (so it only goes to the 1st term), or n = 2(only the first times the second), etc.
Try to look for a pattern
"For all x,y,z in integers, if x/y and x/z , then x/(2y-3z)" How would I prove this directly?
is the c supposed to be a z
yes, my bad
First I assume that x,y,z are integers and that x/y and x/z.
Then... idk. I was thinking about somehow proving that 2y-3z never equals 0 but apparently that's impossible bc its not true
does x/y mean x is divisible by y
Would the pattern be $\frac{n+1}{n}$
Rainy:
See that's super easy, but the way the question asks that leaves me puzzled as to what it is asking
"Compute the values of the product for small values of n" is basically saying try the smaller cases (like what I did before)
Hm
Conjecture is basically to hypothesize a formula
Mathematical language needs to be unique in order to be very precise
Over time you will get used to it
it also asks for a left and right
but there is no = sign so what determines left or right?
the three ... s?
Discrete math online
Junior in college
This specific question wasn't gone over in the online textbook, leaving me to try and figure it out online without knowing what to search
... notation just means that it is excluding something, usually just to show that it is infinite sequence
Like there wasnt anything remotely close to this
Like if I write 1 + 2 + ... + n, then what I mean is the sum of numbers from 1 to n
I know what they mean, I meant if they determined which side was left or right
Like if they were the divider
No, I would never try to think of them as a divider
Oh I gotcha now, that n+1 is the right side
That just clicked
sorry, I'm exhausted haha
No problem, I gtg do my hw now so cya
@last sigil yes
is there any way to negate the divides by symbol | ?
or should i just use a tilde/not in front of the expression
euler/fermat:
would it be incorrect to use a not operator though?
F(1) = 1
F(n)=nF(n-1) = n(nF(n-2) = n(n(nF(n-3)
n^3F(n-3) = n^kF(n-k)
k = n-1 so n^(n-1)F(n-(n-1))
n^(n-1)F(1) = n^n-1
Assuming F(k) = k^(k-1)
Proving = F(k+1) = (k+1)^k
F(k+1) = (k+1)F(k+1-1) = (k+1)F(k) = (k+1)^(k-1)
Where am I going wrong on this proof?```
hrm
ahh i think I see what you're talking about, lemme work it and hopefully it works, thanks
dang that didn't work either, I get a final step of = 2 for my hypothesis
correct, apparently I was way off base
some kind of factorial, I think
at least according to the book
I think I got it
How do i prove that one of two consecutive numbers cannot be a perfect square?
To be precise, I need to prove that of two given consecutive numbers, one of the two is not a perfect square.
Or in other words, at most one of them is a perfect square?
0 and 1 are consecutive
And I think you want consecutive positive integers
yes but the claim was presented as i stated
the two numbers given are positive integers, yes
Two cases
the higher one is a square
the lower one is a square
then you can figure what happens
you can rephrase this as "no two perfect squares differ by 1"
which is actually false! as is your original problem. there actually exists a number n such that both n and n+1 are perfect squares.
oh, well then
my other point still stands
"of two consecutive numbers at most one is a perfect square" is equivalent to "no two perfect squares differ by 1"
does that make sense
@elfin lagoon
yes it does
are you able to prove the latter statement
im trying to figure it out
how would i prove that taking the sqrt of x^2 + 1 does not result in an integer ? Can i just say that this is true bc of algebra?
no
that'd amount to avoiding the question entirely
so no you can't say that
there is a proof of this that doesn't even once mention the square root function
I'm sorry it's in Finnish, but I don't understand what the 1R∘S2 and others mean here, how am I supposed to use the 1 and 2 there
If anyone can help I'd be grateful but if the language barrier is too much I understand.
Yes. There's a nice symmetry argument here
You're asking why the symmetry in the first problem doesn't hold for the second?
One nice method of solving problems, or thinking about problems, is to see what happens if you change the numbers
For example, you can see that 100 doesn't matter too much here, like any even number would really work right
So what if you do this with the integers from 1 to 2
How big are the groups here
Yeah
It's like saying, either I roll a 1 on my die or I don't roll a die, so it should be 1/2 for me to roll a 1
What do you mean?
There are no other cases
In either your example or mine
Is the probability of rolling a 1 on a die 1/2?
Then what's the logical error
Just think about this example
the die example
yeah
Do you understand what the error in logic is there though
I mean, in the die example
Why not?
Kinda
I think the better explanation is that you do have two separate events
And their probability definitely adds up to 1
But their probabilities don't have to be equal
yep
please don't double ping
reread #❓how-to-get-help
for fucks sake
oh repeat offender?
you ping helpers like 10 times a day, like hell you havent
lmao i have better things to do than fight with you
What is this channel for
Discrete mathematics
Guys, if we talk about idempotent property
A is a non-empty set and * is the binary operation then,
for every a belongs to A, a*a = a
doesn't this means that a is equal to e?
no
there is no e
- isn't required to satisfy any of the group axioms
so there need not be any identity to speak of
Nor are there inverses, which you would need to cancel things out
Are these properties enough for an algebraic structure to be ring?
on?
But some people demand that a ring has both multiplicative identity
And that multiplicative is commutative
So, which one to follow? The one said by the teacher?
Thanks for the short response!
It's just that sometimes people require more
sometimes a ring without multiplicative identity is called a "rng"
lmao
pronounced rung
Checking for identity
there is an element e belongs to Q such that
a*e = a i.e. a+e - ae = a e*(1-a) = 0 or e = 0
So, identity element also exists
now, let y be the inverse of a then,
a*y = 0
a+y -ay = 0
y(1-a) = -a
y = a/(a-1)
What if there is "a" that gives an irrational number?
then, y won't belong to Q
can a/(1-a) ever be irrational if a is rational
I have never thought about that
and this isn't even the primary concern
what about a=1?
does 1 even have an inverse under this operation?
oops
Nope
So, it is not a group
😄
BTW, if a is rational, will a/(a-1) be always rational?
except if a = 1
well, i don't know, will it?
hushes
not when a=1 but, I don't know about the rest ;-;
well then why don't you attempt to prove it
let $a \in \bQ \setminus {1}$, prove that $\frac{a}{a-1} \in \bQ$
Ann:
if you know a thing or two about the rational numbers, this should be obvious
our teacher said that 22/7 is not rational as the last digits are non-repititive ;-;
uh
wtf
what
22/7 is rational by definition
in fact, its decimal expansion has a period of 6
$\pi$, on the other hand, is not equal to $\frac{22}{7}$ at all
Ann:
your teacher should be fired for incompetence
people who unironically think π EQUALS 22/7, and hence conclude that 22/7, a RATIO OF TWO INTEGERS as it were, is NOT RATIONAL
are not the kind of people who should be teaching math
fml
$\frac{22}{7} = 3.\overline{142857}$
Ann:
22/7 and pi differ in the third decimal place already
idk about your uni in general but that teacher in particular is not even nearly qualified
Your teacher said 22/7 is not rational? wtf
What they follow is a local author's book
does the book also say that
Does the book say 22/7 is not rational
not yet but, it says all other bullshits which our teachers also say
what does it say
Remember antisymmetric, asymmetric and nonsymmetric?
They all are same according to the book
I don't read that book else I could've told something spicier :3
such as the order of a finite group is defined as the no. of elements in G
distinct elements?
so, my teacher is more incompetent than the author. Yay!?
I mean it's pretty rare that you have a teacher that's better than the author of the textbook
The way they deduct my marks, makes it impossible for me to pursue MS in Mathematics in future on scholarship.
That is a travesty.
You should try to keep the scholarship you have and also apply to other scholarships in case your original one get dropped. Sorry to hear that.
Hello, I'm pretty lost on this exercise, what am I supposed to do? and how? (is It determine the value of a and use it to calculate c? if so how do I do this? )
You know the value of a (mod 13), that's all you need
Not sure what you mean by value of "a (mod 13)"
How is that a "value"
a (mod 13) is the same as saying a mod 13 isn't it?
how can a mod 13 have a remainder ?
Yes it's the same
But they're telling you what it is
well by writing a ≡ 4 (mod 13) they are saying a mod 13 = 4 mod 13
i don't see how they give the value of a
hmm
that was dumb
So I have to find the value c that makes the statement c ≡ 9a (mod 13), true?
Yes
aka determine the value of c that makes c (mod 13) = 9a (mod 13) true
okay
but what I'm not getting is, how can c mod 13 be true?
by doing for example 2 mod 4
you get 2
so I have to match the remainders on both sides of equals?
So here is what I did:
To get the values a, a = k * n + b = k * 13 + 4
for when k is 0,1,2,3
a would be {4,17,30,43....}
9 * 4 = 36
because its mod 13, 13 * 2 = 26, 36 - 26 = 10
then the answer is 10
Can anyone confirm this? 😄
it's fine
@pale epoch What I don't get is, that by doing this we get the remainder don't we?
remainder of what
you calculated the remainder of 9a when dividing by 13, yes
but if 10 is the remainder
(that's what the question is asking)
wait really
so by writing the notation a ≡ b (mod n)
its asking to calculate the reminder of b (mod n)
which is a
that's what I though
but the question sepcified c in a range
if that wasn't the case 23 would also be a solution
and -3
a ≡ b (mod n) means that a and b have the same remainder when dividing by n
yea I ge thtat
or more formally, that a-b is a multiple of n
but since a ≡ b (mod n) is a mod n = b mod n
aren't we signing a value to the variable c?
because c is a number
so c is mod n, and a*k mod n
currently by getting 10
we found the reminder of ak mod n
does that mean that the remainder of c mod n
in a)'s case
is also 10
if I understand you correctly yes
but the question says c is between 0 and 12
and there is only a single number in that range with remainder 10 when divided by 13
I think the thing that is confusing me is ≡, in normal programming we would declare a variable with equals(=), but here it is using ≡ to say that the value of c is something
it's just notation
why should it
neither is the equals sign in equations
this isn't programming
there are no declarations
the notation a ≡ b (mod n) just means that a-b divides n
so by the definition of the notation, the reminder of ak (mod n) is c?
well, by the definition of the notation c and 9a have the same remainder when divided by 13
oooooohhhhhhhh
so by calculating right sight
we automaticly know
the other side
yeah
well, at first step you only know the remainder of c divided by 13
so it could be 10, 23, 36 and so on
because they all have the same remainder when divided by 13
yeah
omg thanks!
I think I get it now 😄
Just to confirm that I know this, for c ≡ 11b(mod13).
it would be 8 right?
because b = k * 13 + 9 = {9,22 .....}
11 * 9 = 99
13 | 99 = 8
your solution is fine
not that I know of
yes
and 9 | 99 is true because. 99 / 9 = 11 (integer)
99 / 13 = not an integer
therefor not divisible
yea
