#quants-n-traders

1 messages · Page 79 of 1

spiral rivet
#

does the code run so that it tests all entries in the matrix or just the first row?

dire finch
#

oh any entry in row 1

#

well aint that something

spiral rivet
#

bingo

#

i guess intuitively it makes sense cause as your matrix gets bigger and bigger more and more paths are going to intersect until there is only one path?

dire finch
#

ya i think the fact that the entries are only up to [M - 1] forces paths to intersect eventually

spiral rivet
#

yeah that would make sense. would there be any way to model this in the context of a transition matrix though

#

for example a transition matrix of starting from col i in row 1 to col j in row 2

dire finch
#

hmm lemme think

low vault
#

I think I kind of get it now?

dire finch
#

you'd get an upper triangular matrix

#

where the probabilities are all 1 / (N - 1)

low vault
#

I htink you should've explained what "moving forward" meant

#

e.g. that

#

specifically

#

you were moving left->right, wrapping around to the next row when your'e done

dire finch
low vault
#

wait wat

spiral rivet
low vault
#

FYI this matrix is a really bad example

#

no matter where you start you end on column 1 I think

dire finch
spiral rivet
dire finch
#

i think the better problem statement is

#

given a vector of size N * N with entries v_i \in [1, N - 1]

#

start at any entry [0, N - 1] and march forward sequentially by v[cur] steps

spiral rivet
dire finch
#

prove that there is only one absorbing state

low vault
#

it sounds like this is only true on average 👀

spiral rivet
#

yeah thats the idea of the problem

dire finch
low vault
#

ah

dire finch
#

so u model the thing as markov

low vault
#

so like lim(n->infty) P(multiple absorbing states) = 0?

dire finch
#

and have transitions i -> [i + 1, i + N] = \frac{1}{N - 1}

low vault
#

oh I was just thinking of like drawing trees lol

low vault
dire finch
#

i think markov wise you wanna prove that the stationary state has max (1 - \epsilon)

low vault
#

dont u mean 1

#

o idk markov chains monkaS

dire finch
#

monka

#

hold my cosmo i think this is trivial

low vault
#

maybe you can spam combo

low vault
#

setting up

spiral rivet
#

start on 4 on row 1 col 2, the next steps are: 3, 3, 1, 4, 1, 2, 1, 1, 2, 1

low vault
#

i just dk like the lingo and theorems lolol

low vault
#

doesn't this end on the bottom left

spiral rivet
#

right but at row 5, col 1 you can still take one step to the three and then take three steps to the 5

low vault
#

there is no 5 in the matrix??? (I assume you mean the 1 on row 5 column 5)

dire finch
low vault
#

when you reach the bottom right corner?

#

I'm confused because

dire finch
#

you stop when you can't march forward anymore

low vault
#

doesn't that just mean every process stops at the very end?

dire finch
#

not necessarily

spiral rivet
low vault
#

oh I see

#

okay that makes sense now

spiral rivet
#

I think what i'm looking for is a way to show that if you have transition matrix P, for some P^n, there is guaranteed a column of 1's

low vault
#

do you mean a row

#

of 1s

#

oh wait

#

nvm it's on teh transition not the original matrix

spiral rivet
#

yeah so basically for some n, all states go to a certain column with probability 1

low vault
#

i think intuitively

#

if you loko at the process row by row

#

it gets iteratively more skewed

#

but im too fried to make any serious formal argument xd

#

i think in my head it's just like

#

the probabilities pile up more to the rightmost columns in each row

#

nvm i think im too fried for this

#

and dont know enough markov chains

low vault
#

I was just wondering

#

but it sounds like you can make a argument only on these states?

#

like as i goes from N*N - N + 1 to N*N the absorbing transition becomes higher and higher probability

ocean bloom
#

Any quant meet ups/networking events in nyc this summer ?

dire finch
#

after some light brain mashing i think probabilistic argument is not good

low vault
#

o nvm it deosn't actualyl decay on its own oops, gotta include the other states

dire finch
#

wait wait wait

#

no

#

fuck

low vault
#

waaaaaaaah

dire finch
#

waaaaaaaah

#

you need to augment the matrix with more absorbing states

#

cuz u shouldn't be able to move mass out of the last row infinitely many times

low vault
#

o.o

dire finch
#

otherwise it's trivial from transition analysis that u will always end up at N*N

#

which is stupid as fuck

spiral rivet
#

right so the matrix for the last row would be different

dire finch
#

you will have transition matrix of size (N(N + 1), (N*N+1)) where the bottom right diagonal matrix of size N * N is the identity

#

and then u can do fundamental matrix analysis

#

hooooly fuck im cooked

low vault
#

there shouldn't be a finite n with that property

dire finch
#

ok i finially understand the structure of this goofy ass problem

#

this is why im not qr orz

low vault
#

mayb u should be

#

too many matrices and my brain dissolves

#

(this is why im a qd)

dire finch
#

P = [Q R; 0 I_{N - 1} ] \in R^{(N^2 + N + 1)^2}

#

Q = {\frac{1}{N-1} if j \in [i + 1, i + N - 1]; 0 otherwise}

spiral rivet
dire finch
#

R \in R^{(N*N) * (N - 1)}; the bottommost (N-1)*(N - 1) chunk in R has the form diag(\frac{1}{N-1} ... 1)

#

im cooking with gas

spiral rivet
#

keep cooking please im taking notes

low vault
#

QR speedrun

dire finch
#

ok and then u do B = (I - Q)^{-1}R

#

B[i][j] is "chance of landing in absorption j starting from i"

spiral rivet
#

no, this is just the game but we are trying to model with a transition matrix

dire finch
#

we want to show that there is some invariance with the "starting from i", i.e. that the absorption probabilities are equal no matter where you start for i in [1, N]"

spiral rivet
dire finch
#

we would like to show that the paths converge

#

probabilistically that means the absorption probability distribution for each initial state is the same

#

i think?

#

someone smarter than me prob alr knows im wrong

#

im orzed..

spiral rivet
#

so no matter where you start on row 1, you always end up on the same column in the last row

dire finch
#

no matter where u start in the first row ur markov transition looks the same; in a seeded run it means that ur union find for all of ur paths have the same parent (almost always)

dire finch
#

from [1, N - 1]

#

i think this statement is generically true for any iid distribution from [1... 1 + K < N]

#

might even work with a gaussian thing

#

or some arbitrary distribution

#

this is probably a percolation problem in disguise where the percolation threshold is inversely proportional to the leap size [1, 1 + K}

#

since we pick K = N - 2 this must be much lower than the percolation threshold

#

@lunar thicket im cooked pookie help

rose holly
#

the fact u can tag andrew at 5 am

#

and know that hes most likely awake

#

is very concerning

#

no GLAZE but my goat andrussy rly is about what he preaches

dire finch
#

i think it's easy to vibe out that, after one run to a terminal index T (call this path P_T for some T), the number of tiles that you could hit on a subsequent run that is not part of P_T is monotonic decreasing (keep merging into P_T etc).

#

maybe it's a pigeonhole thing where you have N initial starting points but [N - 1] transition targets

#

too vibey

low vault
#

Wait don’t u have work tmrw

dire finch
#

i had my OS final from 4-7 pm and then i took a nap immediately after

#

im orzed

low vault
#

Orz

dire finch
#

orz

low vault
#

OTZ

dire finch
#

i thought it was straightforward

#

half the test was (design a multicore scheduler) and (design a file system for SSDs)

#

so i just yapped

#

what are u making

#

orz

rose holly
#

how does it feel

#

this time around next yr

#

youll be graduating

#

u got it

#

r u going to do ms

low citrus
#

guys

#

today is a big day

#

load up on puts on gold and vix and btc and call me jerome powell the way I be printing out cold hard cash

low citrus
#

yes please 🙏🙏 free liquidity 🥰🥰🥰

near knot
#

How do I get a tqd discord invite?

rose holly
#

no negotiating

#

please send to @lunar thicket for them to verify

near knot
rose holly
#

no. you must send it straight to him

near knot
#

What if I am not adequate enough

low vault
#

only if you pass andrew's GMI test

#

you must show that you're Mr. Leetcode (any title okay) and #opentowork

tranquil wagon
#

@lunar thicket how does it feel to be the literal tqd gatekeeper

low vault
#

THE Qandrew Discord

#

omg i love dyck

subtle folio
#

has anyone done interviews with gsa capital? if yes how does their process look like?

limpid pulsar
#

Funny af mfs always ask andrew for tqd invite

#

Imma change server settings so he cant inv

#

Lmao

clear gorge
#

turkish quan dingledale

cursive granite
#

doit

limpid pulsar
#

Ill make a role that specifically cant make invites and give it to him yea

tropic patrol
#

I’ll invite two people

#

just pay me finders fee

south meteor
#

should I switch to python or keep doing leetcode in cpp?

near knot
tropic patrol
#

Gg

south meteor
#

i like cpp but heard it's more convient for interview prep sake to do leetcode in py

#

I want to be a quant one day

#

lolll

#

yeah but what's the hype about python

#

gonna give python a try and then ill decide

#

like next tho 😭

#

what's the syntax like anyway

tranquil wagon
#

Also for new people it’s probably easier to get to a somewhat proficient level with python than cpp

dire finch
#

well gee i dunno maybe os and networking

dire finch
#

ostep

#

cntda

rugged rampart
#

Yeah just do a PhD

rugged rampart
#

maye ml

clear grove
rugged rampart
#

yeah do some react and typescript

ruby fog
ruby fog
#

quant quant quant

#

how u been @blissful kite

#

fun

rugged rampart
ruby fog
#

i’m alright

#

what u been up to

#

man this year moving fast

rustic trellis
#

damn

clear gorge
#

"THE ONE THING QUANT FIRMS DONT WANT YOU TO KNOW"

tiny sleet
#

what is quant technologist

clear gorge
#

i am NLH50000 table bro come over

dire finch
ruby fog
#

yo

pastel sage
#

Did anyone get the reach out from Five Rings for 2026? I was just wondering if they emailed it to everyone who applied or if they sent it to select people?

pastel sage
#

Intern

limpid pulsar
#

they call all the dev and tech related roles technologist

zenith panther
#

@everyone

#

quant is dead

#

ICT traders >>>

low vault
#

Generic

tiny sleet
#

so swe at quant firm = quant dev?

low vault
#

i mean it really depends on the role and how the firm wants to separate things

tranquil wagon
fresh swallow
#

Usually quant dev would mean you touch strategies in some way

rotund glacier
#

Guys other than algebra what prep do I need to do for being an engineer (eventually wanna do math)

#

@lunar thicket are you Andrew Gu

rotund glacier
#

If you guys wanna join TQD here you go

tiny sleet
tiny sleet
rotund glacier
#

At a quant company

#

Anyways

#

Is an invite to TQD

#

Enjoy

tiny sleet
#

i see

lethal apex
#

how do you know kevin nguyen ahh question

rotund glacier
#

How do you know Albert Einstein

lime zealot
spiral garden
mellow aurora
#

You literally have js offer bro

#

This guy can't stop larping

rotund glacier
#

No probably not

#

Crazy thing to do if you want to work in want

#

Quant

#

It is probably the easiest

#

Also optimizing for working in quant is like

#

Questionable objective

#

Like don’t make decisions 5 years out to do it

pallid berry
#

my firm has tons

#

can def go above 6-700 at T1 firms

#

also 6-700 y3-5 vs y10+ in faang

dire finch
#

low 🥵 level 🥵 systems 🥵

#

dawg

#

the 2.2s are audhd moggers tho can u compare

lucid cloak
#

😭 😭 😭

#

I think ur fine dawg

dire finch
#

masters in this economy is ngmi

#

if you're quant grade you can hit meta e5 in same time as a masters

#

bro is pro hiding information

#

if you get t1 quant why would you keep meta

lucid cloak
#

meta doesnt blacklist

dire finch
#

meta doesnt blacklist

lucid cloak
#

bros full of surprises

dire finch
#

bro is physically incapable of laying it down in one sentence

rotund glacier
#

This is not true

mellow aurora
#

This chat bitchless

low vault
#

Okay wait you can totally do this lol

#

Work ft -> masters -> intern

#

Oh nvm what I thought it was a full time offer :omegabruh:

#

Gg

#

Never assume malice…

#

I think he’s just overconfident

rotund glacier
#

Do NOT go to school more just to work at some company

low vault
#

Worked out for the intern across from me

#

But I think he’s was just built different

#

Nah

#

I still got like 3 weeks LOL

#

Zzzzzzzzzzz

#

Holy orz

tropic patrol
#

I’m so DOOMED

unborn crystal
#

ur so orz

zinc badger
#

how do I get a quant return offer

ruby fog
#

No

storm gazelle
#

Can anyone attest to the benefit of sites like quantguide.io, quantable.io, etc? Are they good? Do they actually have previous interview questions? Which one should you subscribe to?

dire finch
#

@lunar thicket i think my research is orz

#

memory secure cross language library imports in embedded

#

during the masters he's gonna goon his way to codeforces tourist

#

let him cook

zinc badger
dire finch
#

omg can i join orz

#

i return from internship aug 9

#

and i live in chi

#

🥴

lethal apex
#

Bro does not wanna meet you @dire finch

#

Middle school ahh drama

#

when u make plans w your homie but the weird kid wanna join

dire finch
winged rampart
#

hi

visual smelt
river shadow
#

hello

#

was wondering about how best to prepare for python interviews for quant devs?

#

for internships

quasi orbit
#

arent u at cit

trail mica
#

Do you guys know which firms blacklist if you fail the OA or onsite for quant dev?

#

I know Optiver/IMC/SIG doesn’t (ie: you can apply again next year)

late root
#

Is aquatic take home/oa auto?

cursive granite
#

nah

exotic eagle
late root
hardy marsh
exotic eagle
#

dont know why though

late root
#

Yesterday

heavy palm
lethal apex
#

love when ngmis are here to tell me something’s not auto 🔥🔥🔥

heavy palm
#

Nah I am doomed bro we all know it

lucid cloak
#

Unc how old r u

heavy palm
#

Too old and too chopped

lucid cloak
tropic patrol
#

@lethal apex is TGS final auto?

lethal apex
#

yea but I get auto rejected after I ranted about them being fraudulent

cursive granite
#

is it auto?

terse barn
#

wtf is that

cedar sparrow
analog kraken
#

one of us has not been rejected by citadel

#

and one has

#

😭😭🙏🙏

cedar sparrow
analog kraken
#

ong im gmi

#

let’s ignore the fact that i’m a non target 0.5x dev

cedar sparrow
#

😭😭😭

analog kraken
#

but recruiting starts

#

in like 3 months

#

i need to bag amazon freshman year beo

cedar sparrow
analog kraken
#

going to try to find some other internship or go back to my existing one and doing swe work

analog kraken
cedar sparrow
#

when i land rentech qr i’ll let you clean my data trust

analog kraken
#

wait

#

u can let my son be a research intern

#

imagine how much aura that would be

#

on ur common app

cedar sparrow
#

i’m not gonna be a quant at that time lil bro

#

if ur son wants to come work at goldman he’s always welcome

analog kraken
#

u forget i have huzz

#

im ngmi

#

ur gmi

cedar sparrow
analog kraken
#

damn

cedar sparrow
cedar sparrow
#

yes do it trust

#

wait highkey ask people here

analog kraken
#

r u fr

cedar sparrow
#

for advice

#

ask there

#

thanks but i got pivoted into the janitor pipeline

#

yeah

cedar sparrow
analog kraken
#

bro

#

he told me to

#

he literally was telling me to

cedar sparrow
#

trust

#

ABGs raving keshi boba

analog kraken
#

idk

cedar sparrow
#

and the abgs wtf guys

#

umd is probably the better choice ngl

#

uc international

analog kraken
#

YOU.

cedar sparrow
#

i did no such thing

#

i have no such recollection of any such thing

analog kraken
#

ur genuinely selling

#

i’ll go ask

cedar sparrow
#

ong

analog kraken
#

in 2025 summer

#

idk i just wanna enjoy my college life bruh

cedar sparrow
#

yeah it’s not all that but i fw it

#

i’ve had good experiences there

#

every time

analog kraken
#

it’s rainy asf

cedar sparrow
#

bros goin home ft

analog kraken
#

cali weather would be so chill

cedar sparrow
#

😭🙏☠️

#

ucsb > uci?

analog kraken
#

lmao i got into ucsb off wl but my acceptance expired

#

so that is no longer an option

cedar sparrow
#

for cs tho?

#

he’s not going cornell vro

#

every high school senior tryna land radix freshman year

#

does

analog kraken
#

i’m landing zon freshman year on @cedar sparrow soul

#

yes

cedar sparrow
#

bro just go cmu idk why u rejected them

analog kraken
cedar sparrow
#

or highkey gtech is also p good

#

huh fr?

analog kraken
#

shrug

#

what can u do now

cedar sparrow
#

will come visit u

analog kraken
cedar sparrow
#

because i’ll be there in the fall

analog kraken
#

😭

cedar sparrow
#

bro i’m gonna be in dc for next year

#

or until musk fires me

#

moves out after 3 weeks

analog kraken
#

then now that i’m here

#

ur like

cedar sparrow
#

what can i say bro i like it here

analog kraken
#

ur a bum bro

cedar sparrow
analog kraken
#

actually ngmi

cedar sparrow
analog kraken
#

i got uber money it’s chill

cedar sparrow
#

that’s fine i’d drive to meet bro he’s the goat

cedar sparrow
analog kraken
#

my moms paying for my ubers freshman year

#

lmaooooo

cedar sparrow
#

it’s a $120 uber bro

#

they highkey do ngl

#

i’ve ubered down to oc and up to ventura

#

it’s hella easy in the day

#

calm shit

cedar sparrow
#

@blissful kite r u socal native?

analog kraken
#

but w this whole like housing shenanigan thing

#

:/

cedar sparrow
#

oh valid

cedar sparrow
analog kraken
#

cuz i have to live in apartment so if i can’t find a freshman roommate the social shit will be chopped

cedar sparrow
#

didn’t realize earlier

#

i do now

analog kraken
#

what changed ur mindset lmao

cedar sparrow
#

☠️☠️

analog kraken
#

he said

cedar sparrow
#

ucla goated

analog kraken
#

overall prestige is better than major prestige anyways

#

i hate this guy bro

cedar sparrow
#

was saying uci > umd on overall prestige

#

sybau bro i was being deaduzz

#

umd is not prestigious bro

#

it has cs rep

#

no overall prestige

#

it’s a like t100

#

ts like saying nyu and irvine valley the same bro

#

congrats on taco bell nutrition specialist

#

nah i love ivc hella goats there

cedar sparrow
analog kraken
#

maybe i should have just gone to udub and done acms bruh

cedar sparrow
#

i think most people here might disagree

analog kraken
cedar sparrow
#

could probably get tqd to agree with me

#

tho

analog kraken
#

i’m sure u understand

cedar sparrow
cedar sparrow
#

i had hella good rng in college apps

analog kraken
#

dawg i was waitlisted like 11 times

cedar sparrow
analog kraken
#

i got railed by luck and i wasn’t willing to take an rng based gamble again

#

😭😭

#

it’s cold asf bruh

#

but in a weird way some of them seem like they are masking a deep sadness

#

i’ll prolly have more fun there tho

#

knowing me

cedar sparrow
#

don’t listen to this guy he’s ngmi

analog kraken
#

@cedar sparrow i’m gonna fit in so well w the other 07 val immo boba abbs

#

i did

cedar sparrow
#

prestige is soooo important

analog kraken
#

3 times

cedar sparrow
#

no freshman year faang = ropemaxx

analog kraken
cedar sparrow
analog kraken
#

act 7 episode 3 immo 2 198rr jett autolock*

cedar sparrow
#

this guys mom is faang btw guys

analog kraken
cedar sparrow
analog kraken
#

msft just laid of 6000 ppl and their hiring is negative bruh

cedar sparrow
#

it’s good

#

cope

analog kraken
#

yes

#

there is a solid chance my family will be unempluzzed

#

bc of msft being cancer with ban hammer

cedar sparrow
#

love when faang swes have js qt job stability

analog kraken
#

☠️

#

goated

cedar sparrow
#

no they be giving intern offers out like candy bro

analog kraken
#

it’s more inconvenient to be away from my already unstable household and i’m ass w the cold weather

#

like i get sick very easily

cedar sparrow
#

bro ong we all ngmi

analog kraken
#

I am ngmi

#

i’m a non target bum who choked an auto msft school bc i couldn’t make 25% instate udub cs

analog kraken
#

yes this is true

cedar sparrow
#

leetcode grind when

analog kraken
#

i am a fraud

cedar sparrow
#

@analog kraken i just fumbled this OA so hard bro

#

probability and maths shit was so light and then i can’t code in cpp to save my fucking life

analog kraken
#

i have a presentation today and two tests tmrw

#

like wtf

cedar sparrow
#

whatever fuck ts i’m just phd maxxing atp

analog kraken
#

i’m finishing lc75 asap so i dont have to worry about it later

analog kraken
cedar sparrow
#

i don’t study cs i barely ever code lmao

analog kraken
#

so he had crazy output and soph transferred to caltech

#

bruh

cedar sparrow
#

what do u study

#

and how do u learn to code

#

bc i never did

#

his target isn’t faang he wants faang as spring board to academia or sum

#

where’d you learn to code lol i study math and have never learnt to code

#

whatchu work as

#

where?!

#

i feel like all trading code i worked with is very generic like knowing python libraries

#

doesn’t teach much about lc type Qs

#

ballpark type of firm

#

like idk how to code in cpp or java

#

oh is it prop?

#

wait what year r u wtf

#

was this jr year?

#

congrats on optiver

#

in all honesty idk when to learn how to code in most languages lol

#

i feel like

#

i know elementary python and can work w libraries and stuff

#

but like i struggle with a lot of the other stuff

#

gts had a q req java/cpp and i wrote the most dogshit cpp solution ever

#

mainly bc i’ve just never learnt anything abt it

#

fairs

#

idt i have a problem w python

#

like it had a python q which was fine

#

was dp

#

but like idk how to learn the others or if it’s even worth time

#

how does one hype dp up sob

#

yeah idk

#

i think this method is so intuitive for anyone who’s ever done a singular golden ratio question

#

in hs

#

but apparently it’s newer in lc

analog kraken
#

☠️

cedar sparrow
#

go there bro i’ll fly u in for zedd if he does it this year

fresh charm
#

DP in interviewing is easy anyone saying DP is hard has no fundamentals and better find a new teacher

#

the hard problems in interviews usually involve simulation in optimized way aka using heap + 1 technique creatively

#

or harder = some algebraic math derivation then from that move on to the coding technique

tropic patrol
limpid pulsar
#

fr

analog kraken
#

is c1 that busted

near knot
#

Will suck dick for tqd invite

limpid pulsar
#

discord gg wMNdEZvqQC

safe remnant
#

thanks for the offer but prob have to pass on this one...

sterile swift
#

ne1 have opinions on Berkeley MFE?

low citrus
#

can NYC folks confirm if this is true in nyc

#

brad chad thad clad and tad sitting in front of 200 West Street

#

it’s true

dire finch
#

minecraft villagers:

#

wow a triple pun i'm proud of myself for that one

sleek smelt
#

Anyone know if citadel securites partners w recruiting firms

south meteor
#

Do you guys have leetcode teachers?

south meteor
sleek smelt
neon mirage
#

Why would you need a leetcode teacher?😂

#

Just watch neetcode videos

late root
#

Has anyone gone through aquatic SWE intern process?

coral cosmos
#

Or 2800 on Leetcode

neon mirage
#

Leetcode is lit just DSA and pattern recognition lol. Just do problems and build and intuition for it 😂

#

If you needed a teacher for that then you’re already cooked

low vault
#

i mean having olympiad coach is useful

#

yeah for lc its kinda pointless

neon mirage
#

Code forces and competitive programming sure but the subject was “leetcode coach” not “comp programming coach”

low vault
#

eh i think people mix up the concepts often

#

whether on purpose or accident

neon mirage
#

Fair

fresh swallow
dire finch
low vault
#

i need recursive dragon

coral cosmos
#

I need Recursive Dragon 0dte calls

sleek smelt
#

anyone done cit eqr process??

low vault
#

Ask me I n 4 months

cedar sparrow
sleek smelt
#

idk. got a reachout

cedar sparrow
#

for internship?

#

or for ft/exp

sleek smelt
#

not sure. have call tom

cedar sparrow
sleek smelt
#

senior

cedar sparrow
#

equity research

cedar sparrow
sleek smelt
#

yea. u know anything about the position or process

cedar sparrow
visual smelt
#

i dont see why not but maybe dont do it on ur first day and just see if other ppl do

ruby fog
#

yes

tropic patrol
#

Insanely ez process

sleek smelt
tropic patrol
sleek smelt
#

Can I dm you?

tropic patrol
#

just ask whatever here

sleek smelt
#

U recommend any resources ?

tropic patrol
#

Yeah interview coder

sleek smelt
#

Damn bro. That was funny af

#

Thanks

tropic patrol
autumn shoal
low vault
#

omg flumshed ur right

cedar sparrow
#

he’s asking abt eqr at cit

#

diff firm

tropic patrol
cedar sparrow
#

my fundamental at citsec was the same haha

#

what did u get asked

#

also was your onsite 2 interviews?

round bolt
#

Has anyone done aquatic dev process?

fresh swallow
#

Why'd like 5 CS students dm me on linkedin in the past week

#

Who is out here looking for jobs in May

lucid cloak
#

I see the vision

gusty vector
#

anyone at NAC wanna uber to dollar tree?

low vault
#

HOLY ORZ

#

NAC

gusty vector
#

im lwk ngmi icl

#

forgot to pack slippers

#

sign of an ngmi

lilac thunder
#

What all could they ask in c++ interviews for swe interns?

lilac thunder
#

😔 but like what do i even practice tho

late root
#

Prob some cpp trivia

tropic patrol
#

@rose holly

elder peak
#

interpret char *(*(**foo[][8])())[];

cursive granite
#

What kind of C++ questions do ppl usually ask verbally in interview?

#

for some mainstream C++ roles, not too niche like VLSI design or asic verification

tranquil wagon
#

Yes I know

#

But when c++ came out it wasn’t yet!

#

It’s a very cool language made by a very influential c++ guy

lilac thunder
zenith panther
#

template

zenith panther
#

QT jane street will literally interview anyone

untold prawn
#

qd screens are free if top school

#

think it's similar but not totally sure

tropic patrol
#

Not u sorry

cedar sparrow
#

firm dependent

#

is it actually? wait holy orz why do i pass cit rez

#

tbh it was citsecnot cit and apparently citsec screen nicer

#

oh really? i’ve heard citsec is more school agnostic and will pass more people than citadel will

#

my hope is to pass citadel screen for gfi later

#

i think swe diff bc the process runs simultaneously but like

#

for non swe the process is seperate i think

#

and then team matching to MM teams is probably more difficult than team matching to a more traditional infra team in cit like equities or sum

#

yeah def

tranquil wagon
#

Are u asking for my preference

#

Probably dlang just because I think the whole “language compiles to another language” typescript-like thing gets messy, cppfront has some very interesting ideas though. I prefer hearing herb sutter talk about it and just using it as things to think about than actually using it lol

tiny sleet
#

and then there's the people who next to their profile you see "pencil and paper" 🗿

tiny sleet
#

my friend has it on his profile lol

#

i mentioned it to him and he said "yeah that's not real lol"

#

he always tries that first though, but if it's not doable by hand then he codes it

#

wtf

#

lambda calculus is wild

#

bruh why do i see mathematica there lol

tranquil wagon
#

A follow up to what

tiny sleet
#

yeah i know, he meant that he rarely does it by hand

#

most problems would be super tedious to do by hand even if you know how to

tardy shell
#

forget c and D and shit

#

real mfs know F# is where its at

cedar sparrow
#

@analog kraken

spiral garden
#

hate to see j mf post a 100 character one line solution of hieroglyphs on project euler

tranquil wagon
#

Spacebar has endless wisdom

#

So orz

tardy shell
#

8 year math postdoc probably has a recessed hairline, youre fine

tiny sleet
#

those who do euler with scratch 💀

#

the 8 people using "euphoria" to do euler

#

oh nah why do i see spreadsheet 🙏

#

The hairy ball theorem of algebraic topology (sometimes called the hedgehog theorem in Europe) states that there is no nonvanishing continuous tangent vector field on even-dimensional n-spheres. For the ordinary sphere, or 2‑sphere, if f is a continuous function that assigns a vector in ℝ3 to every point p on a sphere such that f(p) is alway...

tiny sleet
#

true mathematicians do it when they're high

lapis glen
#

anyone going to cppcon this year?

blissful pewter
#

Anyone got tqd invite

neon mirage
#

Yeah

blissful pewter
limpid pulsar
#

discord gg wMNdEZvqQC

cold heart
#

how do i get roles in tqd

fresh swallow
#

She has no relevant experience 💯

storm igloo
#

It saids that you need no prior financial experience but it’s a trading internship? Anyone know more about this position

tranquil wagon
storm igloo
#

😀😀😀😀

#

Wish me luck

tranquil wagon
#

I clicked this and can confirm there is no free gift card for anyone wondering

storm igloo
tranquil wagon
manic viper
#

I am utterly disappointed, and my day is ruined 😦

cedar sparrow
#

ngmi…

cedar sparrow
#

true story

rose holly
#

christmas snoop dogg in front of fortnite quant

#

this game has become something

digital kettle
#

Is Citadel SWE worth it? Had a recruiter reach out and send an OA, but I’ve been seeing some bad reviews online regarding WLB and culture. Currently at FAANG as a mid level doing applied ML. Idk if anyone here has any insight

visual cargo
rugged rampart
digital kettle
#

I guess to a certain extent, but whats the point of spending time and taking time off for interviewing

rugged rampart
#

It’s the case everywhere though

digital kettle
#

Yeah makes sense I guess. I saw that getting promoted past senior eng/equivalent is harder and at a certain point TCs are pretty similar

digital kettle
rugged rampart
digital kettle
#

They were recruiting for NXT, and reading the description it seems like a general job posting

#

Guessing similar to NG where you get placed on teams with need, but targeting mid-senior level eng

rustic thistle
#

Does anyone know if there's a Citadel intern discord?

tardy shell
#

@rose holly

rustic thistle
molten jacinth
#

does anyone know which quant firms dont care about gpa for quant dev/swe?

blissful pewter
#

i think all of them want geniuses

molten jacinth
#

can good mean having interned at big tech back to back?

analog stump
#

at optiver, how is swe diff from qd

#

the roles look so similar

analog stump
molten jacinth
#

i heard jane street seperates quant dev from swe

#

i'm interested to focus on quant dev for now

analog stump
#

🔥

molten jacinth
#

yesa

analog stump
#

assuming u are incoming junior then?

molten jacinth
#

lets say incoming senior

analog stump
#

swe intenr

#

oh fire

molten jacinth
#

bet thx

empty burrow
#

Anyone do QD interview at Citadel EQR? Got first round interviews coming up (coding), any pointers or advice would be super helpful

#

1 yoe, so maybe new grad. Recruiter told me it would be three rounds: 2 coding, one system design, followed by on-site.

fresh swallow
#

🤦

molten jacinth
#

True

lethal apex
molten jacinth
#

I interpret that as Amazon+hubspot coop ~= top 100 in Putnam contest

analog stump
#

does a winternship at a quant firm mean fall or spring or j during winter break?

#

and also do many firms even do this

tropic patrol
patent steeple
#

you should check role before applying

analog stump
#

ok fire

#

thanks

#

and when do apps for those usually come out

#

or are they alr gone

#

damn

#

ok ok

#

ty

patent steeple
#

When applying to undergraduate programs like Discover Citadel, LaunchPad, and Discovery Day, would it look bad if I list an internship at a different firm for the following summer? I'm wondering if including that experience might make me seem less committed or less appealing to them if it's with a competitor.

#

Ok great thanks!

#

Yea, I just want to go to the event lmao

#

When do they expect grad for winternships? The following spring?

#

or a year later

#

😭

tardy shell
#

i fumbled the omc one so bad

#

ong i hate myself

#

i told them im intl and then rip

#

instant rejected after OA

#

Idt they did for thag winter thing

#

Cuz they moved me to phone post OA and then I talked to them about CPT for that week and how it would work

#

And then got rejection email

#

whatever fucking sauce freshman year me had needs to be repliacted

#

god fucking knows what nat 20 i had rolled cuz of all the calls i got which i ended up fumbling anyway

rose holly
#

meow

ocean bloom
#

any events happening in nyc?

tiny sleet
#

are you serious

#

what role is this for

#

as in freshman applicants for the following year or freshman at the time of the internship

analog stump
#

probably the latter

#

😂

#

oh

#

nvm

tiny sleet
#

lol yeah

analog stump
#

wait what

tiny sleet
#

what kinds of things would they like to see

#

5r and then also just quant companies in general

#

for qr/qd

#

whatever role involves training models

#

ah so once again they just want hypsm

#

so still cooked if you're not T5

#

oh i see

#

but it probably wouldn't be until later years right

#

or is T10 enough to get a qr internship freshman year

#

cracked in what sense

#

oh i see

#

usually quant companies don't care too much about projects right

#

cause the type of work they do probably isn't even possible without the resources they have

#

i mean cracked in terms of what

#

previous internships?

#

oh yeah for swe it makes sense

#

swe is completely different right

#

as in the role of swes and their expectations for them at quant firms is completely different than for other roles right

#

like compared to qr/qt/qd

#

oh

#

nevermind then

#

i swear every company has their own vibe when it comes to role classifications

#

why can't there just be a unified role system WHYYY

#

cause previously i saw people here talking about qd and qr as if they're the same

#

what would swes at quant firms do

#

oh i see

#

so the role possibilities are pretty much as vast as for any other industry

analog stump
#

why did u j delete all ur msgs 😭

tiny sleet
analog stump
#

oh

#

i c

tiny sleet
#

pnl?

#

ok why did this message have to get deleted lol

#

isn't this just general info

analog stump
#

probably runs a script to delete msgs

tiny sleet
#

oh

#

lol

storm igloo
#

How I feel applying to a trading role knowing damn well I’ve never taken a probability class before

storm igloo
#

Learning probability by classes ❌
Learning probability by failing interviews and taking notes ✅

tiny sleet
#

are the probability questions usually general probability problems

#

or are there also things that are specific to quant that you'd only see in a quant math class

tiny sleet
#

so a quant math class wouldn't help at all for interviews

#

probably would help a lot for the job itself though

untold prawn
tiny sleet
#

intro quant math class at my uni

#

there's two more lol

#

one of them is the continuation of this

#

and then the other one, i have no clue what it is, i think it might just be some basic number theory class with some slight quant specific content

untold prawn
#

^^

tiny sleet
#

i think that gets introduced in the second class

#

probably still gonna take both classes cause they're helpful

tiny sleet
#

which one

#

the first one says "particular emphasis on models for pricing derivative instruments such as options and futures"

#

the second one says "probabilistic techniques and concepts from the theory of continuous-time stochastic processes and their applications to modern methematical finance"

#

insane typo on their part 🙏

#

"methematical"

#

and this course has a hard prerequisite of grad level probability theory lol

#

i probably will

#

taking probability theory first sem and then the first quant class during second sem of first year

tropic patrol
tiny sleet
tropic patrol
#

Dude I got voloridge QR process for intern next summer

#

I didn’t realize it was summer 26 I thought it was fall now

#

do I still do it?

#

The day it came out lol

#

Wym push it tho

#

I grad may 26

#

💀

#

LMFAOOO

#

Oh

#

I applied when it came on intern postings 24th

tiny sleet
#

i was already planning to take these classes for a while now

#

do you guys think an image processing library (developed in c/cpp and made to be used in python) would be a good project

#

my bad if this is the wrong channel to ask, not specific to quant

#

just in general, but i also have an interest in computer vision

south meteor
#

I want to be a quant

#

looking for friends to talk to about c++ and comp archeticure

fresh swallow
#

That's not a quant thing

#

That's a swe thing

analog stump
#

got it

#

so qd is more swe

#

qt is more math

#

and qr is more ml?

#

valid 😂

#

oh

#

whats diff between qt and qr

#

other than pay

#

got it

#

ok

#

i c

tiny sleet
#

the fuck

#

since when

#

i thought qrs develop models and qts make use of them

limpid pulsar
#

Linear regression is machine learning!!

#

TI-84 calculators are AI powered

#

XTX, HRT, JS, Jump, Tower, truely revolutionary machine learning with 100000 B200s.

low vault
#
  • quadrature
lethal apex
#

Daily High Flyer w

fresh swallow
fresh swallow
#

DE shaw reached out to me few months ago I had to ghost them

#

I don't have references from professors so

#

Waste of time

low citrus
zenith whale
#

lol wut

storm igloo
#

HRT + Citadel is crazy bro. Not me thinking I have a chance 😂😂😂

neon mirage
#

Orz

storm igloo
#

Fine it’s Andrew guys!

storm igloo
#

low key, you right

#

cscareer and /csmajor has no crack people

stone drum
quasi orbit
#

is it better to do systems/ml at a robotics company or go back to quant

storm igloo
#
  1. depends which quant
  2. depends what you like
low vault
#

i love how we all collectively know whose LI it is

low vault
#

i get that quant swe might not be the most inspring work but financial freedom still frees you up to do whatever other things you wanna do in your free time

lethal apex
#

traders always hating on swe

#

most of em won’t be at the company in 3 years

#

but we will be making dashboards forever 😍

lethal apex
#

Again comparing best of qt with the mid of swe

#

This is where I have 0 insight into numbers but I’d assume L7-8 where you are leading orgs is about as difficult to achieve as PM.

#

upward momentum I’m doubtful even for Pm

#

Unless you mean just

#

Theoretical maximum

#

You can make

#

idk prob bc trading and engineering is really hard to compare

#

there vastly more engineers so one might expect to have a higher percentage of high performers there

#

You just got bayes theorem’d

cedar sparrow
#

top 1% of candidates comparing the salaries and success for top 0.01% of candidates

#

this is non bayesian delusion

#

bro most people r gonna call you unemployed

#

but as long as u happy gang

#

you’re unemployed and flying spirit^

lethal apex
#

The poors is crazy 😂

devout ibex
#

do you just chat bullshit man

#

lmao

lethal apex
#

Trading worth the risk of being fired in short term

#

EV including all years is prob better for swe

#

like that 100 million dollar pm is some tiny percentage so it cancels out

#

double down

#

asap

#

idk but ragebaiting fulltimers is prob negative ev

#

so maybe don’t take my advice

lethal apex
#

? Gotta be the worst message possible

analog stump
#

😎

lethal apex
#

even a gif sends more info per bit

analog stump
lethal apex
analog stump
#

I mean I know who they are

lethal apex
#

aight

analog stump
#

Why

lethal apex
#

was gonna insult u for not reading what I said 😂

#

we chill tho

analog stump
#

😎

analog stump
#

He said swe ev higher including all years

#

🙏

lethal apex
#

nah he said that including 0-3 yoe swe ev is higher

analog stump
analog stump
#

Mb then

lethal apex
#

Yea im saying that the ev of trading is probably higher for 0-3 yoe but past that very few make it so swe overtakes. Kind of a difficult estimate

lethal apex
barren robin
#

Anyone heard from bridgewater IE

analog stump
#

What’s IE

lethal apex
#

Investment engineer

#

You are a mutual

#

im not gonna start ragebaiting your irl friend lmao

analog stump
#

🤪

spiral rivet
analog stump
#

I c