my method was literally just merging everything until i got one variable to equal some combination of the other two variables divided by a constant (so like x = (x+y-2)(x+y)/6 for example) which means either (x+y-2) is some multiple of 6 or (x+y) is some multiple of 6, and then solved for x as some function of one integer by substituting one of those as 6n or smth
#serious-discussion
1 messages · Page 194 of 1
ah that's not true though
6 doesn't have to divide one or the other, you could have, say (x+y-2) is a multiple of 2 and (x+y) is a multiple of 3
did you get any solutions?
what's one
(441,529)
,w (441+529)/2 = 2sqrt(441529)
in general there are infinite ye
its not times two its plus two
2 + geometric mean
on the right
ah I worked the wrong problem
damn
haha well I only took 30 seconds to get the wrong answer so nothing lost
you may have been right FUCK
okay im gonna need to adjust that
okay it's fine that wasnt the hard part so im just gonna backpedal there then 😭
yeah setting one of the factors to a multiple of 4 did in fact give me like.. double the solutions
maybe more idfk i didnt count 😭
alright just got to working it again correctly this time lol. I solved for x as a quadratic with coefficients containing y and got, $x=y+4 \pm \sqrt{y}$. Only way we can have this is if $y=n^2$, so $(n^2+4 \pm n, n^2)$ and then start checking what's in the bounds which shouldn't be too hard hopefully from looking at what y is.
Merosity
i've got
five parametrizations coordinate thingies
and they most definitely overlap
but the question is how much
wait holy shit that sounds like so much of an easier method 💀
i could be plugging it in wrong but it's not producing any solutions 
okay so i have an updated solution 😭
you may have been correct
unless i messed up some other way
well that's a funny pattern
they're all pretty paired
haha don't sweat it I blundered pretty hard earlier too 
this is the shit i did 😭
at some point i managed to get the equation into $x=\frac{(x-y)(x-y+8)}{16} +1$
Serphic
and then did the whole divides 16 thing
but
then had to do it for when one of them is equal to a multiple of 2 or 8 or 4 and
that was "fun"
aaand my conclusion was still wrong i said there was 1000 and not 999
I think it's good to just roll up your sleeves though and dig in
many people get stuck in analysis paralysis and try nothing and are all out of ideas lol
no but what's annoying me the most is that I actually tried to do a quadratic with x and y but i actually somehow messed setting it up so i thought it just didnt work 😭
for x in range(1, 10 ** 6):
for y in range(x + 1, 10 ** 6):
if (x + y - 4) ** 2 == 4*x*y:
count += 1
print(count)```
all you need
it's a bit slow might need to let it run overnight
4 16
9 25
16 36
25 49
36 64
49 81
64 100
81 121
100 144
121 169
144 196
169 225
196 256
225 289
256 324
289 361
324 400
361 441```
wait x is always square lol
x is all the squares in fact, so long as the corresponding y is within the upper bound
count = 0
for x in range(1, 10 ** 3):
x = x*x
for y in range(x + 1, 10 ** 6):
if (x + y - 4) ** 2 == 4*x*y:
print(x, y)
count += 1
print(count)
if __name__ == '__main__':
main()```
yeah x = n^2 and y = (n + 2)^2
count is 997
( \sqrt{n^2(n+2)^2} + 2
=n(n+2) + 2
=n^2 + 2n + 2
=\tfrac{1}{2}(2n^2 + 4n + 4) \
=\tfrac{1}{2}(n^2 + n^2 + 4n + 4)
=\tfrac{1}{2}(n^2 + (n + 2)^2 )
=\tfrac{n^2 + (n + 2)^2}{2} )
Just Pick Up A Book
It's pretty easy to show all pairs of this form work, now you just need to show that these pairs are the only solutions.

ths is all that is necessary
I think you also have to show that there's at most one x for any given y but that should be fairly easy
Wait the khan academy SAT prep only has 5 units? Cuz all the other units after that has the same content.
Lucky
How to make this angle appear like a straight line?
It's geogebra
It also works on desmos
But you need to choose any other variable than x
hey clown
@timid bronze will girl girlevent still happen????
girlwhat
girlevent
not to be confused with the Lexus December to Remember Sales Event
LMAO
I dont think ppl were serious about dat ..
@shrewd loom What GCSEs do you take?
im doing cs, design tech, maths, further maths, all three sciences, spanish, geography and both englishes
Oh ok. You take AQA for most of them?
ye
Nice so do I
I just dont do DT, further maths, spanish, or Geography. Instead History
You should add me Duck. We could share some GCSE resources (I got a lot)
i can't add ppl from mathcord, my parents wont allow me to add or dm ppl idk irl 
Ah ok
will they tell you off if you make a server with one other person in it
why are you wging me for following my parents rules...
what if a mathematics mod wands to contact you because you were bad
im just emoting . . .
ping me in the server
and expose your misdeeds to all
ye
sad
what is a primitve root
omg is that meaty chonker?
I do wonder what happened to the old one
the fucking air raid sirens went off

I see, b&
wouldnt they already be mad at duck for being bad
negative
They eat roos here! I thought it'd be a protected species or smth
Trigger warning hamburger meat
all of the species have large and widespread populations
they’re edible?
you can eat most things lol
Reminds me of the willy wonka scene on edibility lol
And is in fact frowned upon in most societies.
But afaik eating apex predators is not good because of accumulation of toxins as you climb a food chain
Fox is not edible
This is because fox muscle contains glands that naturally produce cyanide
don't they eat fox in mongolia
Fr?

It's true, just ask sqeral
@lapis hull pls respond :3
quickie
what does it mean exactly to glue two mobius strips by the identity map along their boundaries
so we are identifying the boundary of the first mobius band with the other?
Yes
in general "glue along f" means we have two copies of the spaces and we are identifying x with its image correct?
can u give examples of this in like context of CW complexes
everytime i think i got it i just realize that i don't lmao
Given an inclusion A ⊂ X and some f: A → Y you can define the attachment by taking disjoint union X + Y and quotienting by x = f(x)
(if f is not injective some of the points in A may be glued together)
If A ⊂ X is a CW subcomplex, Y is a CW complex, and f is a cellular map then the attachment is also a CW complex (iirc)
😄
Rip idk how else to explain
Like say you have a finite length cylinder X, one of its circular bases A, and a square Y
And you have a map f: A → Y mapping to a circle in the square
Then the attachment is a hat
Without the ropes
so u glued x with f(x); f(x) being a point in the square and x being a point in the upper circular base
correct?
and u just glued every point on the circular base with everypoint on f
is that right
Yes
yeah got it
so basically gluing along f just means the quotient space identifying every point with it's image
Yup
so an n-cell is obtained by gluing an n-1 cell along the boundary
of f
correct?
no
an n skeleton is obtained by gluing an n-1 skeleton with an n cell along the boundary of f
is that correct
Yup
got it
tysm geometry king
yeah im going to be in #alg-top-geo-top for a long time
consturcting explicit homotopies is literally
insane
@raven plaza sorry for the ping, can u check out #alg-top-geo-top these ar the kind of problems i face
hadooken
does this look like diff at the origin?
this is definitely not differentiable at the origin
nor is there any reasonable way to extend the domain of the derivative to x=0
Looks like that if you evaluated the derivative at epsilon and then let epsilon go towards zero you'd get something that blows up
YEEE FR
What's this notation?
it's a shorthand for partial derivatives
people sometimes write like f_x for df/dx
Hey @agile fiber (sorry for the unsolicited ping by the way, you can just ignore this if you don't wish to answer), but I wanted to ask you something about the PN junction as you seem to be pretty knowledgeable in that regards
When considering a PN junction in reverse bias or in equilibrium, the whole semiconducting material counts as a variable capacitor which has a variable capacitance, but im confused in the sense that if the immobile charge carriers (the ionised acceptor and donor atoms) are the ones forming the depletion zone (aka the "dielectric"), then what actually is being "built up" on this capacitor's "plates"? is it the mobile holes and electrons? the immobile ions still? a bit confused here
well yes but what is q_j? the ions in the middle? the electrons (blue) and holes (pink)?
im guessing its the latter because as the absolute voltage increases the amount of charge decreases as more holes and electrons get sucked into the voltage source, and the capacitor "widens"
the charge we consider is due to the ions in the middle
How contradictory. This professor im watching is saying something different
https://youtu.be/6UNezo_GByE?si=Qee8Z0sHacjw14-0 check out 53:50 to 54:40. Is what he is saying correct? I mean it sure seems like the non-depleted regions are what he is referring to as "plates with charge"
well we think of the "plate separation of the capacitor" as being the width of the region
yes, no disagreement on that
.
As you should.
What is vector projection used for?
6 hour slowmode 
one day 
projecting a vector onto another vector can be used to write vectors in terms an alternative [orthogonal] coordinate system. it can also be extended to projecting vectors onto subspaces, which has many uses, including, e.g. least-squares regression
well, i'm glad i went out celebrating ally's win. she deserved that highk. i hope she feels better after tn c:
bullseye
ur so cute 😭
i only meant to hit 1 person tho
Fr
so how many people were hit?
Artichoke, Cleo, ally?
NAMI KILL COUNT: 4
Cant u technically mute them for 6 hours
That wouldve not messed with innocents!!
no i wanted to mess with innocents
6 hours slowmode is equivalent to muting someone for 6 hours in a single channel
Wow..
this is not true btw
if you take off slowmode entirely, then all the cooldowns reset
indeed, that is what rat did last time
nah
I'm freeeee
1 second it seems
i tried decimal values but it doesnt accept them
the interface is really weird
Free us!
I see
5 seconds it seems
it gives some predefined values but you can type in a custom amount
like "1 second"
Oh I didn't know that
I'll have to try that later
but it seems 0.5 seconds doesnt work
wait so who got 6 hr slowmoded
im pretty sure ur gonna have to off it
who's the last one?
Me, cleo, idk who else
ally too, apparently
Yeah he freed us
but there's one more?
FREE ME @leaden torrent
DONT TELL ME IM THE INNOCENT PLS.
i think i did
wait i'm still slowmoded 
😔
i still have slow modeeee
IM FREE

@abstract rampart I'm gonna bump this for you since it got drowned out from everything else
Ty
you can also think of calculating fourier series coefficients as a type of vector projection
If I want an orthogonal vector can't I just use cross product?
the cross product is only defined in R^3
in any case the point is that you can use vector projections to change coordinate systems if the basis vectors are orthogonal
it was @native oriole 
i'm sad that that might never happen again
cuz
it was funny
oh come on now don't cry
it was... u know... a practical joke
ok u know what that's ur fault for choosing bio
uh
i thought you were sick because you saw organs or smth
idk
i skimmed the chat
What
This made me giggle
lol
i cant sleep when i have a sore throat or clogged nose
Healthy is balance love
sounds like you're having a rough start ngl
Sounds like @latent edge
well college is a time of experimenting, u can try learning in the kitchen
I hyperfocus too much and forget to eat yeah
one time deltoid was without food for like
2 days
Hyperfocused on math
yea it is
going to the library in between classes
what classes?
same
food diminishes your number theory skills 
i cant focus in my dorm
not mine
oh yikes
hmm
for biology I find it helpful to understand the material first
drawing diagrams, labeling them
using anki to help with memorization
taking practice tests
try to act like ur teaching a class
understanding the material is already 80% of mastering the content
well other than assignments and reading, i guess there's sitting and scanning your notes before a test
although you might have to use more techniques for memorization since your major is more heavy on that than mine waas
all what u have to do is dig deeper
please for god sake dont just raw memorize it's fucking bad
rote is bad
twinning
u cant believe the percentage of premeds in my bio final exam cheating
whenever I lock in, I forget to eat for the entire day 
me whos trying to memorize the unit circle rn instead of understanding it
bad
sure it can help you (somewhat) for exams and midterms whatever but for the long run you are just destroying yourself
whenever I eat, I forget to lock in for the entire day 😔
Lets see if i can do it
ok bio out of the way
hyzae do u have physics classes?
so mostly bio/chem?
damn that's interesting af
I would lock in for hours studying these topics
without getting bored
it’s soon 6 am and i haven’t slept; the sore throat from yesterday is mostly gone but the clogged nose is still there and no fun 
lmfao kinda rare coming from u
no srsly
Guys has anyone here done Calculus of Variations?
physiology is amazing
yes
Can you advise me on something
practice
my dietician would have a conniption highk

(did i spell that right? lol)
you did!
pretty much yeah
Ok well I'm a high school student and I'm studying calculus of variations as a hobby because I have already studied almost everything that's in the curriculum
unfortunately my degree had none of what you study
dry science courses
they were like a filter for students to drop out
extremely boring
a lot of irrelevant chemistry shit

ah, climate science courses with a focus on aridity
tfw biochem was in my 4th year
wild
the chem advisors were actual karens
just one year
I looked at seniors and I was like "lol nope fuck that im not gonna do the premed shit"
Yeah i gave up after 180 cant do mental math anymore
yeah
but the jump from premed to med school is gambling
4 years + some stuff
competitive af
yea i wanted something realistic
i dont want to gamble for my life
yea
based
premed + med + residency 
damn it's really rough
i do see a lot of premeds quitting after finishing like 2 degrees science related
Then switch to cs or engineering
cuz it's just fucked up
i'm not sure if i remembered it right but i think someone told me residency was invented by some guy who was always on cocaine
and hence people doing residency work like 80 hours a week for crappy pay
idk
this premed system is trash
it aint doing anything in my honest opinion
premeds in my uni are literally trying their best methods to cheat
on the other hand why do mathematicians do 2.3 postdocs 
4.0 gpa isn't that good anymore
internships 
programming
I had an interview last week
bro asked me a hard technical problem for a $20/hr job
it went well
dont ask me how
then they sent an email
"we removed the position"

wtf??
but thats sad
wtf
what do u want me to say
u get a gold star? lol
for the record my gpa was like 3.0
what, i was just saying straight to the point about reality
like it hits hard
not making fun of ur statement
What channel would this question belong in:
"Not sure if this belongs here, but
https://www.youtube.com/watch?v=EmKQsSDlaa4
In the end of the video, he shows what the hologram looks like when flipped around. Is this related to non-euclidean geometry, or just some weird effect?"
take care hyzae 
Getting locked in a mental asylum
solve this absurdly stupidly hard question
I pass
sorry we removed the position
have a good day
i would just post in #math-discussion
Alright thanks
@latent edge u told me ur sis is doing premed right
i can see her switching
oh hell no
Good girl
and im undecided btw
Sounds like premed
you'd be surprised lmao
like what do they do to cheat
im nearsighted so i cant see ppl do from afar 😫
ah, pre-med talk?
most of the exam classes are online

oh
I have a couple friends on the pre-med track
not proctored?
lab exams are also online
it's uhh... not great
now wtf is a lab exam.
after the end of all labs you do a comprehensive exam for the labs
for chem labs I had to do a 10 pages exam in 5 minutes before doing the actual lab
I DONT HAVE TO DO THAT?
if u ask the lab proctor to give more marks she gets karen and gives u 0
good luck getting into med school : )
Well im taking an intro gen course bc i was warned how the next chem after is super difficult. im taking the next one after tho
that was personal
yea but thank u for ur experience sharing tbh
its nice to get brutal honesty
i hate shit being sugarcoated

oh dw, I still can't study properly 
what are ur plans ally
I'm actually a terrible student ngl
After graduation
well hard to say bc idk what i wanna major in ..
But stay w my parents ig work for couple years to pay off university then move out
same, which is pretty bad as i’ve started grad school and desperately need to pick up the pace
tbh seeing how much my bf struggles with the internship politics, if he goes out somewhere other than us/canada, I can see him locking in to math or medicine

me too
yea rodbet is grad student
for a masters yeah, started this semester
yea
Ohh
sorry if i made this discussion really dark and depressing
u didnt
no its ok it's good to let stuff out sometimes
u were brutally honest
and share experience
you need a "eat or get eater" mentality
that gives cannibalism
pls elaborate
in the US i gather that the early years of phd grad school is effectively the same as a masters in europe, while in europe much fewer people take the step from masters to phd (which has less “school” about it…)
00000
basically if u dont advocate for yourself, people will take advantage of u and destroy u
true
there are 4 moods of deltoid
- Silly deltoid
- Math deltoid
- Romantic deltoid
- This deltoid
idk should i call it
Brutally honest deltoid

btw the thingy u told me about ur uni
ngl that's really sad
is that what capitalism does to a mf
which one was that, the ml thing?
tfw ur uni had selberg, brun and so many others
and no actual number theory course

ah yes
hasn't happened to me yet, but ig that's a bad sign 
I dunno how to advocate for myself
takes time
I should figure this out before it becomes a major problem 
we hope
I'm sorry WHAT
Oslo?
WHAT THE FUCK AM I HEARING?

yeah according to rodbet, they replaced with ml stuff
rodbet is getting robbed 
well that was more recent
DUDE ITS SELBERG
the nt culture seems to have been gone from here for quite some time
That's really sad
indeed
I guess really the way to succeed nowadays is not relying on institutions
Just go raw self studying
hmm
I can't sleep
:(
I would probably have a better time if someone was sleeping with me ngl
I find it helpful
🫵 clone yourself
u called?

can someone tell me what’s the difference between doppler shift and doppler effect?
There's no difference
so they’re used interchangeably?
Yeah
is there any case where they aren’t used interchangeably? or where they’re different?
You could be good today, but instead you choose tomorrow
Know that your time has a limit set to it
Think of your many years of procrastination
How you’ve been blessed with further periods of grace of which you’ve taken no advantage of
It is time now to realize the nature of the universe to which you belong
And of that controlling power whose offspring you are
And to understand that your time has a limit set to it
Use it then to advance towards your enlightenment
Or it will be gone and never in your power again
You’re a doer, not a procrastinator,
Because you understand that when you procrastinate you’re not just avoiding your duties,
You’re also wasting your time unfruitfully
And thus it’s not that you don’t have enough time, it’s that you waste most of it
hii to you, thank you so much for giving me an actual reality check
You’re welcome. I’m glad the reality check resonated with you. Now, it’s up to you to take action and move forward—don’t let this moment of clarity slip away!
Hi where can I ask a question for math in general (Not solving any problems) I want something more like experience based thing
a discussion channel is fine i guess
Lol
lmao
deepwoken.
?
I have an erudite lexicon but that word leaves me dumbfounded
its a server you are in...
Oh
its just rlly rare to see someone that plays deepwoken my bad 😭
Yeah I’m not really active on discord anymore, so I’m in a lot of servers
No problem lmao
I played it once and it was pretty mundane
carpe diem
Hello
hello tiny
Hello, folks of the mathematics community. Do any of you know of anywhere I can access a sheet or document of some sort where all the symbols and unique characters used in at least most branches of math are summarized? I am working on a small project and such a document containing such symbols would be beneficial to it. Thank you.
Hello
people have asked about this before, pretty sure such a thing doesnt exist
wikipedia has a list of mathematical symbols but it is nowhere near exhaustive
it woudl be a massive undertaking to create such a thing
does this ping u?
skibdiddy
https://www.cambridgeinternational.org/Images/420009-mathematics-notation-list-.pdf
this should be sufficient for pre-uni mathematics
and for a lot of undergrad
treat this as sort of a "maths fundmentals" notation list
I scored 92/105 on my math HW
good stuff
no disrespect but why is ur math hw 105 points
15-30-30-30 is the breakdown
i see
Hi ilyas
hi
hi
hru
x is any positive integer, a(n)=(2a(n-1)-1)/3, a(0)=4x-3, Do there exist odd number that don't equal any a
@everyone
Guys i have a theory i just thought (i am new to maths so i dont know if anyone has said it before):
Basically when you take the squares of two consecutive numbers and subtract the smaller from the biggest one the result is always the sum of those two numbers
Isn't that a special case of the binomial theorem?
What is that?
It's theorem about the coefficients of the expansion of the polynomial (x+y)^n.
In elementary algebra, the binomial theorem (or binomial expansion) describes the algebraic expansion of powers of a binomial. According to the theorem, it is possible to expand the polynomial (x + y)n into a sum involving terms of the form axbyc, where the exponents b and c are nonnegative integers with b + c = n, and the coefficient a of each ...
a^2-b^2=(a+b)(a-b)
yes, because
(x+1)^2 - x^2 = x^2 + 2x + 1 - x^2 = 2x+1 = x + (x+1)
Chaos theory can actually work in the markets
this place kicks rocks
Yep this is a special case of difference of two squares
Hi
Good wbu
No
that's amazing
i also had a theory that i discovered back then
a number containing three consecutive digits is always divisible by 3
idk if it's already known
i discovered it while counting in a counting channel
does anyone know if it's an already known existing theorem or something?
i discovered it 4 months ago
hey
yup this is known, in fact it's divisible by 6, do you see why?
i was doing just fine before i met you
not yet
then go fuck yourself
#chill it's lyrics
123 is not divisible by 6
im sorry 🙏
we're okay
ya xD
or are you some really obsecure part of ma- okey
idk what my name means. i forgot
it's the first cardinal
oh I misread what you said originally
thought you said if you have 3 consecutive numbers, then one of them is divisible by 3
Well, it is the first cardinal, the set of natuals, the sum of all finite ordinals
nah you're good what you said was unambiguous I'm just getting sleepy apparently 🤣
someday it'll be clearer to me
I'm not too great at it either haha, my first math book was on this stuff and still I fail to understand
there's a couple ways to prove this. Are you familiar with the trick for testing for divisibility by 3?
yes. the sum of the digits must be divisible by 3
cool
do you see how you could use that to prove it, or I'm assuming that's what you want to do
but i never knew it's always true for 3 consecutive digits until then
idk yet
we actually talked about it then. I'll backread what we discussed
bc I've forgotten
I'll give a hint if you like: ||call the middle digit d. What are the first and last digits? What do you get when you add them?||
345
d, d+1, d-1
ojhhhhh
that's so clever
8910
and quick
i never thought of that
i like that proof
wait
hmm
oh yea ok that makes sense
i just don't know the proof for why a number with the sum of digits divisible by 3 is divisible by 3 itself
I have probably spent too much time doing elementary number theory LOL
oh i see
aha, yes this is a good question
also worth noting that it works for 9 as well
so this kind of stuff is elementary number theory, i barely know
yeah to prove these things, you're gonna probably want to get a bit more familiar with modular arithmetic
i see
but I can give you a kind of rough proof of it for you anyways
so pick a number in base 10 we'll use it as an example
5
2024
ok perfect
so you can think of this as expanded out to meaning $$210^3 + 010^2 + 210^1 + 410^0$$, that make sense so far?
Merosity
so when you subtract 1 from a power of 10, what do we get/
10^n - 1?
Yeah, I guess that was a bit vague, but we get a bunch of 9s, so for instance 10^5 - 1 we get 100000 = 99999 + 1 = 9*11111 + 1
oh yea makes sense
generally speaking $10^n-1 = 9 * (1+10+10^2+... + 10^{n-1}$ (this is also called a geometric series/sequence)
Merosity
ohhhh
so we can replace all the powers of 10 in there with 1 + 9*stuff
ok
the idea is the stuff multiplying 9 is already divisible by 9, so we don't have to care about it
so let me back up to the example since it's probably murky right now, but this is why getting familiar with modular arithmetic will help.
oh isn't this supposed to be like (1+9)^n ?
not quite, that's something a bit different called the binomial expansion
So let me know if you can follow the steps or I should elaborate here:
$$210^3 + 010^2 + 210^1 + 410^0$$
$$2*(1+999) + 0*(1+99) + 2*(1+9) + 41$$
$$2+0+2+4 + 9(2111 + 011 + 2*1)$$
Merosity
I kinda made a jump there after writing the powers of 10 as 1+99...99
yea it's clear
cool
ok so you see th esum of 2+0+2+4 happening here, if this is divisible by 3, then the other part is 9*stuff so that's divisible by 3 and the whole number is divisible by 3
similarly for 9
so this isn't exactly a proof, but the proof is just doing this same thing but more generally
sp how would the (2*111+0*11+2*1) part be divisible by 3
that part may or may not, but it doesn't need to be
the 9 multiplying it makes that whole term divisible by 3
ohhhh right right
cool cool
nope, won't work for 6
although you could check for 2 and 3 individually
since divisibility by 2 and 5 are super easy in base 10
i always thought it always work for 6 until i saw somewhere i forgot that it's not always true
and powers of 2 and 5 are also relatively simple too
we could try to come up with a counterexample to show it doesn't work
yea. i learned it in preschool
sure
2028 is divisible by 6
111111 (six ones)
😎

if the digits add to a multiple of 3, it has to
cause divisible by 3 and 2 means divisible by 6
yea
yup yup
I wouldn't say it that way, at least that's not how mod works, unless I'm misunderstanding how you'r eusing it here
yeah you're welcome lol
oh yea sorry i was gonna say if i used mod correctly there
but i meant to say if it's divisible by 6
gotcha
I'd make a lemma: If n is divisible by 10 then n/10 = n (mod 3)
Wait it's too trivial to even be a lemma
My question is how I am going to take algebra 1, algebra 2, algebra 3, geometry, precalculus and calculus in high school, didn’t I just have 4 years but each class takes a year I think so how that is going to work for me can you explain?
maybe you will take geometry together with algebra 1?
algebra 1 and geometry are taught in middle school for some schools and there is no such thing as algebra 3 as far as i’m aware
im on algebra 27
I'm on 14 I think
I ate 1 kg of flesh today
√-1
.
iota
0_א
Hi everyone.
Does anyone have access to the 2024 AS Level Further Core Pure Edexcel Paper?
@civic flicker how's the progress going on lin alg 👀
akira hows RA going?

What's the textbook you're using?
for which?
Graph theory
I see, thank you
very demure, very mindful
abbott 
hi
hey should i do all the exercises in Lang Geometry (the high school one) under the "Additional Exercises" header? How are the exercises in this section supposed to be different?
Algebra 3 is just linear algebra
Maybe we should have a #resurces channel, I do see there is a #book-recommendations one
I know of a couple nice blogs I've discovered. I'm sure people have their own non conventional sources as well that aren't strictly published books
there is already #resources but it is archived
!bookrecs
Check out the official Mathematics Discord website, or ask in #book-recommendations. If you want to submit your own book review, please DM ModMail.
you can check this
it appears as though I do not have access to that channel. I wonder why it's archived, nobody else will find resources again?
get the role in id:customize
also I pinged wrong one should be #books or #books-old xd
Philosophers, mathematicians, cientifics, artists, medics, and sociologists. Are mostly unpaid for moving humanity forward
Why do we build infrastructure to support a bigger population. It seems like society is maintained just to support wealth accumulation for a few
Because most people don't serve the greater purpose of moving humanity forward on any way
ok
Humanity was never run for enlightenment
It used to be whoever had the biggest stick gets the food and women. Very harsh reality
In some areas of the world, it is still like this. In other areas of the world we try to have more "civil" society. But now you're getting into politics
Rather an easier explanation might be animals are more geared towards short term immediate rewards
So at the bigger picture, there is no common direction, humanity moves forward more by accident than as a consequence of a greater planning
Well, advancement has been a continued direction
I will make business and power a philantropic matter just like art and science, and how I shape society will be my mona lisa. Thats why I'm thinking so deeply about infrastructure and the direction of humanity
Maybe uninterested greater purpose is part of the collective mind that "has a plan" (just to say it in some way)
Well I hope you're in a place that has democracy, and you have people that think alike and support you
Some people might not like the things you say. If you live in a place like mexico, I would probably recommend you leave before trying to make those people mad
I think no place is secure enough, but Argentina seems ok anyway
do you think linear algebra is harder than multivariable calc
depends......
man,..
this is not a good vocation
for one u don’t get paid
how will u buy rice
so true
Guys I have a quick random question.
Does anyone know where I can find any legal advice or legal attorney for malicious harassment, and stalking?
this is a math server, highly doubt you'll find someone who can help you here unless it's about a user here then contact modmail
the police station maybe?
(that's a genuine answer 😭)
We have multiple police reports since we have moved to a new area.
I have never experienced anything like this ever in my life.
oh
i'm sorry
i will pray for you all in Jesus Christ's name 🙏
Thank you sir. 😅>>>🥲
you are welcome
Pray for all injustices to be reversed. 🥲
i will!
a
a
i assume linear algebra is easier
that's why im planning to learn it next, before i jump to multivar calc
Linear algebra 1 is probably easier, solely because that's usually a prereq for vector calc
Linear algebra 2 is harder to compare, maybe about the same?
Hi, I hope this channel is the right place to ask. I'm stuck on choosing a method for my final paper. I'm interested in forecasting exchange rates using GRU/CNN, but I've found many papers that have already researched this topic using methods like GRU/CNN with Attention, Bi-GRU, and various combinations of these approaches. I've also explored other methods like LSTM and RNN, but I'm confused since these have been extensively studied as well. Are there any methods I could compare or improve upon if I pursue this topic?
yo
Yo
YOYO
Yo buddy
[31;47m YOOOOOOOOO DIOV
that guy tried to steal the moon
where can i find resources for exercises about proving things in circles and triangles and rectangles
goggle
why did i buy an umbrella only to walk the long way home in the rain without using it

Hello, math student here. Are there any tablet android applications in which I can express a math equation or draw a function and get automated graph showing its range and domain?
no
but you could use latex for math equations and desmos for graphing
if you're referring to the server logo, this guild's administration stands in solidarity with the LGBTQ+ community and if you have an issue with that, you are welcome to message @polar panther but don't expect a kind response
crazy question
I think its because people kept bitching about it during pride month a while back, so as punishment to those people they made it permanent
actually so based mwahahahahaha
I'm just confused on how to find the gap research..
Be gay, do crime math! ||but also crime||
(x+y)^2 = x^2 + y^2 ||characteristic > 2||
😎
Ohh
But like
Won’t this affect the server identity
Isn’t it an academic Server
Yes, and?
Sure, but it's also a social server with people in it
we do both so this is completely fine :)
aaaa that's EVIL
can someone provide some insight on something real quick
so i have a calc 2 midterm in approximately 12 hours
i had reviewed so hard on everything i THOUGHT was on the exam
u-sub, integration by parts, FTC, riemann sums and all that im perfect on ill get those right
same with area and arc length
i compleley didn't realize volume was on the exam idk how tf i fumbled so bad
i missed the last few classes due to illness (where we covered volume) so idk much really and saved it for post-exams since i had other classes to study for
should i sleep or spend the next 12 hours learning volume
Is there some reason you can't spend the next, say, 5 hours learning the topic and the next 7 sleeping
im walking to office hours for chem exam (also tmrw) rn so idk i have to study for chem and calc
calc i was certain i would get an A cause everything else feels good
just completely didn't realize volume was on there
i guess my question is
how long would it take
to get the basics
ik thats a hard question to answer and it depends on the person but i dont wanna show up sluggish after pulling an allnighter
exam is at 8am
Well if you have your foundations right learning volume shouldn’t be impossible
can you not walk into office hours at a later time
In this case I'd say the sleep is more important than the topic but it shouldn't be too hard to get any given calc topic in a couple hours
we had a practice exam sheet
and he never posted the answers
this is the only way to check
this if for chem btw but honestly atp i might skip
could you not try emailing now for answers?
no hes weird like that
oh
you have to come in cause hes doing a lecture style office hours
that’s stupid
alright fuck chem
either way i agree with arti
i wouldnt give up chem if youre shaky
not shaky i understand it just wanted to know the answers to the practice
just in case
im gonna try to get some 4-5 hours of sleep in
4 is very little unless ur body somehow functions well on that
id highly suggest u get more
but literally idek where to start
better to be fuzzy on a topic than so sleepy u cant even master most of the exam
because ur brains just tired
thats true because even if i get it wrong its prob only one or two questions on volume
check syllabus maybe?
nothing the only thing he has is office horus
Wtf
and he posts two pages of "class notes" every two weeks
literally two pages of basic definitions
and thats it
but do u have any other context other than “Volume”





