For help with attribution and sourcing, Grammarly is releasing a citation finder agent that automatically generates correctly formatted citations backing up claims in a piece of writing, and an expert review agent that provides personalized, topic-specific feedback.
Screenshot from Grammarly's demo of inserting a post-hoc citation.
https://www.grammarly.com/ai-agents/citation-finder
It is not "attribution and sourcing" to generate post-hoc citations that have not been read and did not inform the student's writing. Those should be regarded as fraudulent: artifacts testifying to human actions and thought that did not occur.
www.theverge.com/news/760508/...
18.08.2025 22:37 β π 56 π 8 π¬ 2 π 1
Iβm an award-winning mathematician. Trump just cut my funding.
The βMozart of Mathβ tried to stay out of politics. Then it came for his research.
I wrote an op-ed on the world-class STEM research ecosystem in the United States, and how this ecosystem is now under attack on multiple fronts by the current administration: newsletter.ofthebrave.org/p/im-an-awar...
18.08.2025 15:45 β π 539 π 221 π¬ 13 π 25
These experiences wouldnβt have been possible without the unending support of Raf Frongillo, @huckbennett.bsky.social, Sriram Sankaranarayanan, Joan Gabriele, and The Boettcher Foundation. I am very grateful!
13.08.2025 21:40 β π 0 π 0 π¬ 0 π 0
my reflections on summer 2025 | Adithya Bhaskara my reflections on summer 2025 | Adithya Bhaskara
what i've been up to this summer!
I decided to take time to reflect on my summer travel to STOC, EC, and CMMRS, and I wrote a blog post about my experiences!
I hope to make the funding opportunities that made my travel possible known to other undergrads. Most are Colorado/CU Boulder specific, but similar sources exist elsewhere!
13.08.2025 21:37 β π 2 π 0 π¬ 1 π 0
Had an amazing time at #ACMEC25 this year! I met a lot of cool people and simultaneously learned a lot!
I especially enjoyed the social choice workshop.
Thank you to all the conference and workshop organizers!
11.07.2025 04:10 β π 4 π 0 π¬ 0 π 0
Edit-a-thon
Let's get together and create or edit Wikipedia pages for EconCS entries.
Both new and experienced Wiki editors are welcome!
See everyone at #ACMEC25 on Monday, July 7!
And while you're there, join us July 8, 8-10pm in Stanford Econ Landau 139 for a Wikipedia edit-a-thon!
Feel free to contribute to the crowdsourced list of topics that need attention: docs.google.com/spreadsheets...
02.07.2025 19:59 β π 6 π 2 π¬ 0 π 1
First day of first STOC was amazing! Great talks all around, and meeting so many cool people!
23.06.2025 16:42 β π 1 π 0 π¬ 0 π 0
Iβm excited to attend my first STOC this year on a grant funded by the Boettcher Foundation.
Iβm relatively new to the broader theoretical CS community as a fourth-year undergrad, so Iβm looking forward to meeting people here, especially fellow students!
Iβd love to meet people in the same boat!
22.06.2025 09:47 β π 0 π 0 π¬ 0 π 0
Update: After writing this, I just realized @huckbennett.bsky.social also has a great thread about Kimbrel's algorithm! I'd recommend a read!
01.06.2025 12:21 β π 1 π 0 π¬ 0 π 0
Congratulations again to Tracy Kimbrel! Hopefully this summary of his matrix multiplication verification algorithm was enjoyable to read. I apologize in advance for any poor exposition and errors; it's my first time doing an overview in this format. Please let me know if you have any corrections!
01.06.2025 12:17 β π 1 π 0 π¬ 1 π 0
Kimbrel and Sinha's algorithm runs in O(n^2) time, like Freivalds', but, it uses only log_2(n)+O(1) random bits!
When AB-C is promised to have low Hamming weight, @huckbennett.bsky.social, Karthik Gajulapalli, Alexander Golovnev, and Evelyn Warton give an O(n^2) algorithm using fewer random bits.
01.06.2025 12:17 β π 1 π 0 π¬ 1 π 0
For correctness, note that if AB - C = 0, then ABx - Cx = 0 with probability 1. Note dim(ker(AB - C)) β€ n - 1. So, if AB - C β 0 but ABx - Cx = 0, x is a linear combination of at most n - 1 vectors out of a possible 2n options. So, Pr[AB - Cβ 0] β€ 1/2, as desired.
01.06.2025 12:17 β π 0 π 0 π¬ 1 π 0
Yes! Let's look at Kimbrel and Sinha's algorithm [KS93].
1. compute a prime p in {2n,...,4n}
2. sample Ξ± ~ {1,...,2n} uniformly at random
3. let x = {Ξ±^0 mod p,...,Ξ±^(n-1) mod p)^T
4. return true iff ABx - Cx = 0
01.06.2025 12:17 β π 0 π 0 π¬ 1 π 0
We can drive the probability down by running Freivalds' algorithm repeatedly, and since Freivalds' procedure uses three matrix-vector multiplications, Freivalds' algorithm is an O(n^2) time algorithm that solves MMV with high probability. It uses n random bits.
Can we do better than n random bits?
01.06.2025 12:17 β π 0 π 0 π¬ 1 π 0
The last β€ is due to:
1. write β¨k,xβ© = k_ix_i + r where k_i β 0 is a component of k and r = sum(j β i) k_jx_j.
2a. if r = 0, then β¨k,xβ© = 0 iff x_i = 0, true with probability 1/2.
2b. if r β 0, then β¨k,xβ© = 0 iff x_i = 1 and k_i = -r, true with probability β€ 1/2.
01.06.2025 12:17 β π 0 π 0 π¬ 1 π 0
Freivalds' algorithm [Fre79] is as follows:
1. sample x ~ {0,1}^n uniformly at random
2. return true iff ABx - Cx = 0
Observe that (AB - C)x = 0 iff ABx = Cx. If AB - C = 0, then ABx - Cx = 0 with probability 1.
Else, AB - C must have a nonzero row k. So, Pr_x[ABx - Cx=0] β€ Pr_x[β¨k,xβ©=0] β€ 1/2.
01.06.2025 12:17 β π 0 π 0 π¬ 1 π 0
So, what is matrix multiplication verification? Say Alice has two n Γ n matrices A and B she'd like to multiply, and Bob has a powerful computer. Alice sends the matrices to Bob, who sends back the purported product C. How can Alice decide whether C = AB without computing the product herself?
01.06.2025 12:17 β π 0 π 0 π¬ 1 π 0
Kimbrel's receipt of this honor is well-deserved! To celebrate, I'll discuss the matrix multiplication verification problem and his improvement with R.K. Sinha [KS93] to Freivalds' algorithm [Fre79].
More improvements are ongoing work, joint with @huckbennett.bsky.social and @noahsd.bsky.social!
01.06.2025 12:17 β π 5 π 2 π¬ 1 π 0
CS PhD student at Cornell Tech. Interested in interactions between algorithms and society. Princeton math '22.
kennypeng.me
The Simons Laufer Mathematical Sciences Institute (SLMath) in Berkeley, California (formerly MSRI). Learn more at slmath.org or http://linktr.ee/mathmoves.
PhD student @ Cornell info sci | Sociotechnical fairness & algorithm auditing | Previously MSR FATE, Penn | https://emmaharv.github.io/
Undergraduate researcher. Interested in generalization, multi-objective reinforcement learning, and open-endedness | Looking for PhD in RL in 2026
My works: https://scholar.google.com/citations?user=GnHpLE8AAAAJ&hl=en
Professor, MIT EECS/CSAIL
http://people.csail.mit.edu/karger
Assistant Professor at the Department of Computer Science, University of Liverpool.
https://lutzoe.github.io/
CS prof at Penn, Amazon Scholar in AWS. Interested in ML theory and related topics, as well as photography and Gilbert and Sullivan. Website: www.cis.upenn.edu/~mkearns
theoretical cs kid
currently @ matscience, chennai
https://rxlnj.github.io/
Professor at UChicago. Author of Game Theory: Analysis of Conflict (1991).
Computer Science Ph.D student at CU Boulder
Postdoc at the National University of Singapore, working on computational social choice and voting theory.
Assistant Professor at Cornell. CS theory, cryptography, quantum computing. he/him
Cryptographer β’ Associate Professor at Boston University
Assistant Professor at Stanford
Machine learning, algorithm design, econ-CS
https://vitercik.github.io/
PhD candidate @ Yale | Undergrad @ IITK | anaymehrotra.com
Learning Theory, Missing Data, Generation