Tootfinder

Opt-in global Mastodon full text search. Join the index!

@arXiv_mathGR_bot@mastoxiv.page
2025-08-07 08:50:13

Twisted conjugacy in $BS(n, 1)$
Oorna Mitra, Mallika Roy, Enric Ventura
arxiv.org/abs/2508.04397 arxiv.org/pdf/2508.04397

@arXiv_mathNT_bot@mastoxiv.page
2025-08-08 08:50:22

On certain root number $1$ cases of the cube sum problem
Shamik Das, Somnath Jha
arxiv.org/abs/2508.05361 arxiv.org/pdf/2508.05361

@arXiv_mathCO_bot@mastoxiv.page
2025-07-08 13:04:41

An improved construction for the triangle removal lemma
Zach Hunter
arxiv.org/abs/2507.05231 arxiv.org/pdf/2507.05231…

@arXiv_mathPR_bot@mastoxiv.page
2025-08-07 09:25:24

The probabilities for the number of intersections in the Buffon-Laplace needle problem in $\mathbb{R}^d$
Uwe B\"asel
arxiv.org/abs/2508.04640

@arXiv_csDS_bot@mastoxiv.page
2025-07-08 10:24:51

Color Distance Oracles and Snippets: Separation Between Exact and Approximate Solutions
Noam Horowicz, Tsvi Kopelowitz
arxiv.org/abs/2507.04578

@arXiv_condmatmtrlsci_bot@mastoxiv.page
2025-07-08 12:12:30

The occupation dependent DFT-1/2 method
Shengxin Yang, Jiangzhen Shi, Kan-Hao Xue, Jun-Hui Yuan, Xiangshui Miao
arxiv.org/abs/2507.04804

@grifferz@social.bitfolk.com
2025-06-08 16:05:57

Day 1: Gene starts thread asking why his Thunderbird looks weird.
lists.debian.org/msgid-search/
Day 3, 32 mails in: Gene works out which desktop environment he is using.

@eglassman@hci.social
2025-06-08 03:44:34

"Two final considerations include (1) the necessity of being both deliberate and strategic and (2) the importance of being flexible and even whimsical about your future."
journals.plos.org/plosbiology/

@arXiv_mathCV_bot@mastoxiv.page
2025-07-08 07:43:20

Rational lemniscates and the matching problem
Kirill Lazebnik, Pierre-Olivier Paris\'e, Malik Younsi
arxiv.org/abs/2507.03547

@SmartmanApps@dotnet.social
2025-08-08 02:41:21

#Mathematics #Maths

@grumpybozo@toad.social
2025-06-07 16:40:01

I am ignorant on what it is to be trans or a woman or a world-class athlete, but I THINK the problem here is a doomed project of representing a multidimensional continuously variable attribute with a single Boolean infosec.exchange/@JessTheUnsti

@tiotasram@kolektiva.social
2025-08-04 15:49:00

Should we teach vibe coding? Here's why not.
Should AI coding be taught in undergrad CS education?
1/2
I teach undergraduate computer science labs, including for intro and more-advanced core courses. I don't publish (non-negligible) scholarly work in the area, but I've got years of craft expertise in course design, and I do follow the academic literature to some degree. In other words, In not the world's leading expert, but I have spent a lot of time thinking about course design, and consider myself competent at it, with plenty of direct experience in what knowledge & skills I can expect from students as they move through the curriculum.
I'm also strongly against most uses of what's called "AI" these days (specifically, generative deep neutral networks as supplied by our current cadre of techbro). There are a surprising number of completely orthogonal reasons to oppose the use of these systems, and a very limited number of reasonable exceptions (overcoming accessibility barriers is an example). On the grounds of environmental and digital-commons-pollution costs alone, using specifically the largest/newest models is unethical in most cases.
But as any good teacher should, I constantly question these evaluations, because I worry about the impact on my students should I eschew teaching relevant tech for bad reasons (and even for his reasons). I also want to make my reasoning clear to students, who should absolutely question me on this. That inspired me to ask a simple question: ignoring for one moment the ethical objections (which we shouldn't, of course; they're very stark), at what level in the CS major could I expect to teach a course about programming with AI assistance, and expect students to succeed at a more technically demanding final project than a course at the same level where students were banned from using AI? In other words, at what level would I expect students to actually benefit from AI coding "assistance?"
To be clear, I'm assuming that students aren't using AI in other aspects of coursework: the topic of using AI to "help you study" is a separate one (TL;DR it's gross value is not negative, but it's mostly not worth the harm to your metacognitive abilities, which AI-induced changes to the digital commons are making more important than ever).
So what's my answer to this question?
If I'm being incredibly optimistic, senior year. Slightly less optimistic, second year of a masters program. Realistic? Maybe never.
The interesting bit for you-the-reader is: why is this my answer? (Especially given that students would probably self-report significant gains at lower levels.) To start with, [this paper where experienced developers thought that AI assistance sped up their work on real tasks when in fact it slowed it down] (arxiv.org/abs/2507.09089) is informative. There are a lot of differences in task between experienced devs solving real bugs and students working on a class project, but it's important to understand that we shouldn't have a baseline expectation that AI coding "assistants" will speed things up in the best of circumstances, and we shouldn't trust self-reports of productivity (or the AI hype machine in general).
Now we might imagine that coding assistants will be better at helping with a student project than at helping with fixing bugs in open-source software, since it's a much easier task. For many programming assignments that have a fixed answer, we know that many AI assistants can just spit out a solution based on prompting them with the problem description (there's another elephant in the room here to do with learning outcomes regardless of project success, but we'll ignore this over too, my focus here is on project complexity reach, not learning outcomes). My question is about more open-ended projects, not assignments with an expected answer. Here's a second study (by one of my colleagues) about novices using AI assistance for programming tasks. It showcases how difficult it is to use AI tools well, and some of these stumbling blocks that novices in particular face.
But what about intermediate students? Might there be some level where the AI is helpful because the task is still relatively simple and the students are good enough to handle it? The problem with this is that as task complexity increases, so does the likelihood of the AI generating (or copying) code that uses more complex constructs which a student doesn't understand. Let's say I have second year students writing interactive websites with JavaScript. Without a lot of care that those students don't know how to deploy, the AI is likely to suggest code that depends on several different frameworks, from React to JQuery, without actually setting up or including those frameworks, and of course three students would be way out of their depth trying to do that. This is a general problem: each programming class carefully limits the specific code frameworks and constructs it expects students to know based on the material it covers. There is no feasible way to limit an AI assistant to a fixed set of constructs or frameworks, using current designs. There are alternate designs where this would be possible (like AI search through adaptation from a controlled library of snippets) but those would be entirely different tools.
So what happens on a sizeable class project where the AI has dropped in buggy code, especially if it uses code constructs the students don't understand? Best case, they understand that they don't understand and re-prompt, or ask for help from an instructor or TA quickly who helps them get rid of the stuff they don't understand and re-prompt or manually add stuff they do. Average case: they waste several hours and/or sweep the bugs partly under the rug, resulting in a project with significant defects. Students in their second and even third years of a CS major still have a lot to learn about debugging, and usually have significant gaps in their knowledge of even their most comfortable programming language. I do think regardless of AI we as teachers need to get better at teaching debugging skills, but the knowledge gaps are inevitable because there's just too much to know. In Python, for example, the LLM is going to spit out yields, async functions, try/finally, maybe even something like a while/else, or with recent training data, the walrus operator. I can't expect even a fraction of 3rd year students who have worked with Python since their first year to know about all these things, and based on how students approach projects where they have studied all the relevant constructs but have forgotten some, I'm not optimistic seeing these things will magically become learning opportunities. Student projects are better off working with a limited subset of full programming languages that the students have actually learned, and using AI coding assistants as currently designed makes this impossible. Beyond that, even when the "assistant" just introduces bugs using syntax the students understand, even through their 4th year many students struggle to understand the operation of moderately complex code they've written themselves, let alone written by someone else. Having access to an AI that will confidently offer incorrect explanations for bugs will make this worse.
To be sure a small minority of students will be able to overcome these problems, but that minority is the group that has a good grasp of the fundamentals and has broadened their knowledge through self-study, which earlier AI-reliant classes would make less likely to happen. In any case, I care about the average student, since we already have plenty of stuff about our institutions that makes life easier for a favored few while being worse for the average student (note that our construction of that favored few as the "good" students is a large part of this problem).
To summarize: because AI assistants introduce excess code complexity and difficult-to-debug bugs, they'll slow down rather than speed up project progress for the average student on moderately complex projects. On a fixed deadline, they'll result in worse projects, or necessitate less ambitious project scoping to ensure adequate completion, and I expect this remains broadly true through 4-6 years of study in most programs (don't take this as an endorsement of AI "assistants" for masters students; we've ignored a lot of other problems along the way).
There's a related problem: solving open-ended project assignments well ultimately depends on deeply understanding the problem, and AI "assistants" allow students to put a lot of code in their file without spending much time thinking about the problem or building an understanding of it. This is awful for learning outcomes, but also bad for project success. Getting students to see the value of thinking deeply about a problem is a thorny pedagogical puzzle at the best of times, and allowing the use of AI "assistants" makes the problem much much worse. This is another area I hope to see (or even drive) pedagogical improvement in, for what it's worth.
1/2

@arXiv_mathGR_bot@mastoxiv.page
2025-07-08 11:36:00

On the conjugacy problem for subdirect products of hyperbolic groups
Martin R. Bridson
arxiv.org/abs/2507.05087 arxiv…

@davej@dice.camp
2025-06-07 11:40:08

An old friend of mine is a Hasher. Shout-out to Pollywaffle from Canberra. sudomakecake.com/@woollypigs/1

@arXiv_mathLO_bot@mastoxiv.page
2025-08-07 08:29:33

On Shelah's Approachability Ideal
Hannes Jakob, Alejandro Poveda
arxiv.org/abs/2508.04374 arxiv.org/pdf/2508.04374

@arXiv_qbiobm_bot@mastoxiv.page
2025-08-07 08:23:43

MD-LLM-1: A Large Language Model for Molecular Dynamics
Mhd Hussein Murtada, Z. Faidon Brotzakis, Michele Vendruscolo
arxiv.org/abs/2508.03709

@arXiv_mathDS_bot@mastoxiv.page
2025-07-08 10:24:20

Retrodicting Chaotic Systems: An Algorithmic Information Theory Approach
Kamal Dingle, Boumediene Hamzi, Marcus Hutter, Houman Owhadi
arxiv.org/abs/2507.04780

@fortune@social.linux.pizza
2025-07-05 22:00:02

This is the first numerical problem I ever did. It demonstrates the
power of computers:
Enter lots of data on calorie & nutritive content of foods. Instruct
the thing to maximize a function describing nutritive content, with a
minimum level of each component, for fixed caloric content. The
results are that one should eat each day:
1/2 chicken
1 egg
1 glass of skim milk
27 heads of lettuce.
-- Rev. Adrian Melott

@arXiv_csNE_bot@mastoxiv.page
2025-07-08 20:54:39

Replaced article(s) found for cs.NE. arxiv.org/list/cs.NE/new
[1/1]:
- A Census-Based Genetic Algorithm for Target Set Selection Problem in Social Networks
Md. Samiur Rahman, Mohammad Shamim Ahsan, Cheng-Wu Chen, Vijayakumar Varadarajan

@arXiv_mathGT_bot@mastoxiv.page
2025-06-06 07:25:25

Gordian split links in the Gehring ropelength problem
Friedrich Bauermeister
arxiv.org/abs/2506.04644 arxiv.org/pdf/2…

@arXiv_mathAP_bot@mastoxiv.page
2025-07-08 13:10:51

Global strong solution of the 3D compressible liquid crystal flows with density-dependent viscosity and large velocity
Jiaxu Li, Yu Mei, Rong Zhang
arxiv.org/abs/2507.04760

@cowboys@darktundra.xyz
2025-08-02 14:31:29

Cowboys Have 1 Glaring Problem Going Into the New Season heavy.com/sports/nfl/dallas-co]

@aral@mastodon.ar.al
2025-07-31 08:47:13

You cannot capture the essence of capitalism in a single pho- me.dm/@davidtoddmccarty/114944

@arXiv_csDC_bot@mastoxiv.page
2025-07-08 10:12:01

Communication Round and Computation Efficient Exclusive Prefix-Sums Algorithms (for MPI_Exscan)
Jesper Larsson Tr\"aff
arxiv.org/abs/2507.04785

@arXiv_mathCO_bot@mastoxiv.page
2025-06-06 07:25:00

Spectral Tur\'{a}n problem of non-bipartite graphs: Forbidden books
Ruifang Liu, Lu Miao
arxiv.org/abs/2506.04884

@arXiv_csIR_bot@mastoxiv.page
2025-08-08 09:31:02

Multi-Modal Multi-Behavior Sequential Recommendation with Conditional Diffusion-Based Feature Denoising
Xiaoxi Cui, Weihai Lu, Yu Tong, Yiheng Li, Zhejun Zhao
arxiv.org/abs/2508.05352

@arXiv_grqc_bot@mastoxiv.page
2025-08-07 09:14:04

Covariant and Gauge-invariant Metric-based Gravitational-waves Extraction in Numerical Relativity
Joan Fontbut\'e, Sebastiano Bernuzzi, Simone Albanesi, David Radice, Alireza Rashti, William Cook, Boris Daszuta, Alessandro Nagar
arxiv.org/abs/2508.03799

@arXiv_mathFA_bot@mastoxiv.page
2025-07-08 11:24:01

Best approximation of a three-variable function by sum of one-variable coordinate functions
Rashid A. Aliev, Vugar A. Guliyev, Amil F. Jabiyev
arxiv.org/abs/2507.04747

@arXiv_mathSP_bot@mastoxiv.page
2025-07-08 09:09:20

P\'olya's conjecture up to $\epsilon$-loss and quantitative estimates for the remainder of Weyl's law
Renjin Jiang, Fanghua Lin
arxiv.org/abs/2507.04307

@muz4now@mastodon.world
2025-07-03 17:57:34

The Value of Scaffolding johnmdavismusic.com/2025/06/12

@arXiv_mathDG_bot@mastoxiv.page
2025-06-03 07:30:33

Asymptotic Plateau problem for $2$-convex hypersurface in $\mathbb{H}^4$
Defa Chen, Zhenan Sui, Letao Sun
arxiv.org/abs/2506.00565

@jerome@jasette.facil.services
2025-08-06 16:01:49

Tired of how much Canadian journalism focus on the US. Sure let's do it about trade policies that impact us.. but their non-stop stupidity and fuckery, we just don't need to see that.
They are gerrymandering in Texas, this is their fucking problem. Why should it be the #1 news of the Canadian public broadcaster? What can I do? How does that concern me?
And yes, human rights abuse should be denounced.
Are we running out of problems in Canada to talk about? I don…

Screenshot of CBC News: What's up in Texas? Trump's gerrymandering push explained
@arXiv_mathNT_bot@mastoxiv.page
2025-07-08 10:32:51

Counting linear congruence systems with a fixed number of solutions
Marcus Nilsson
arxiv.org/abs/2507.04688 arxiv.org…

@arXiv_csGR_bot@mastoxiv.page
2025-07-08 07:35:39

MoDA: Multi-modal Diffusion Architecture for Talking Head Generation
Xinyang Li, Gen Li, Zhihui Lin, Yichen Qian, GongXin Yao, Weinan Jia, Weihua Chen, Fan Wang
arxiv.org/abs/2507.03256

@arXiv_csDS_bot@mastoxiv.page
2025-07-08 08:19:40

Bicriteria approximation for $k$-edge-connectivity
Zeev Nutov, Reut Cohen
arxiv.org/abs/2507.03786 arxiv.org/pdf/2507…

@tinoeberl@mastodon.online
2025-07-05 12:14:28

Die Erde speichert derzeit mehr als doppelt so viel Wärme, wie #Klimamodelle es erwarten.
Die #Energieungleichgewicht liegt 2023 bei 1,8 W/m² und übersteigt die Prognosen deutlich. Forscher vermuten eine abnehmende

@jorgecandeias@mastodon.social
2025-06-05 20:56:10

And this, people, is why Europe ABSOLUTELY NEEDS RIGHT FREAKING NOW its own human-graded space access system.
I'll never understand why nobody at #ESA thought of developping further the ATV in order to be also used to send people up instead of just cargo.
I know, the problem was mostly in bringing people down, as the ATV was designed to burn up in the atmosphere. But still. Now we…

@arXiv_mathCO_bot@mastoxiv.page
2025-07-08 12:21:30

Hypergraph Tur\'an problem of the generalized triangle with bounded matching number
Jian Wang, Wenbin Wang, Weihua Yang
arxiv.org/abs/2507.04579

@scott@carfree.city
2025-05-29 05:54:46

"The big problem is 'bottlenecks' that make it harder to produce housing, expand energy production, or build new roads and bridges."
vs.
"The big problem is that big corporations have way too much power over our economy and our government."
By 12pts all voters and by 42pts Dem voters prefer the second statement. They're right!

@buercher@tooting.ch
2025-06-06 05:02:37

Johann Steurer und Erich W. Russi konnten als Ärzte 120% arbeiten, weil sie im Backoffice eine Frau hatten, die sich um Haushalt und Kinder kümmerte. Dass dies ein Problem sein kann, sehen sie nicht.
tagesanzeiger.ch/zuerich-rueck

@arXiv_mathCV_bot@mastoxiv.page
2025-08-07 07:43:13

Green\'s Mapping and Julia Sets
Ilia Binder, Paul F. X. M\"uller, Peter Yuditskii
arxiv.org/abs/2508.04207 arxiv.org/pdf/2508.0420…

@arXiv_hepth_bot@mastoxiv.page
2025-08-06 09:26:40

Comments on QED$_3$ in a Magnetic Field
Thomas T. Dumitrescu, Juan Maldacena
arxiv.org/abs/2508.03532 arxiv.org/pdf/2508.03532

@arXiv_mathAP_bot@mastoxiv.page
2025-08-05 09:48:40

Evolution problem for the $1$-Laplacian with mixed boundary conditions
N. Igbida, J. M. Maz\'on, J. Toledo
arxiv.org/abs/2508.01809 arx…

@arXiv_mathAG_bot@mastoxiv.page
2025-07-21 09:24:40

Constructing and characterizing prime $\mathbb{Q}$-Fano threefolds of genus one and with six $1/2(1,1,1)$-singularites via key varieties
Hiromichi Takagi
arxiv.org/abs/2507.13657

@arXiv_csDM_bot@mastoxiv.page
2025-07-02 07:45:50

Reducing Profile-Based Matching to the Maximum Weight Matching Problem
Seongbeom Park
arxiv.org/abs/2507.00047 arxiv.…

@arXiv_mathNT_bot@mastoxiv.page
2025-08-08 08:27:32

Squares, three fleas, sporadic integer sets, and squares
Giedrius Alkauskas
arxiv.org/abs/2508.05347 arxiv.org/pdf/2508.05347

@arXiv_csCC_bot@mastoxiv.page
2025-08-05 16:36:40

Replaced article(s) found for cs.CC. arxiv.org/list/cs.CC/new
[1/1]:
- On the Counting Complexity of the Skolem Problem
Gorav Jindal, Jo\"el Ouaknine

@to3k@infosec.exchange
2025-08-01 19:28:47

Czy ktoś jeszcze ma taki problem na moim blogu?
pol.social/@mstankiewicz_prywa

@arXiv_mathNA_bot@mastoxiv.page
2025-08-06 08:04:00

Orbit recovery for spherical functions
Tamir Bendory, Dan Edidin, Josh Katz, Shay Kreymer
arxiv.org/abs/2508.02674 arxiv.org/pdf/2508.02674…

@arXiv_mathGM_bot@mastoxiv.page
2025-07-01 08:17:03

Iteration Steps of 3x 1 Problem
Youchun Luo
arxiv.org/abs/2506.23070 arxiv.org/pdf/2506.23070

@arXiv_mathSP_bot@mastoxiv.page
2025-07-08 09:53:40

Sufficient conditions of $k$-leaf-connected graphs and spanning trees with bounded total $k$-excess
Guoyan Ao, Ruifang Liu, Jinjiang Yuan
arxiv.org/abs/2507.04400

@arXiv_csLO_bot@mastoxiv.page
2025-07-03 12:41:25

Replaced article(s) found for cs.LO. arxiv.org/list/cs.LO/new
[1/1]:
- The Boolean Solution Problem from the Perspective of Predicate Logic -- Extended Version
Christoph Wernhard

@unchartedworlds@scicomm.xyz
2025-07-07 08:13:01

housing ownership law possibilities
Should we maybe have a law that says any one person or entity can only own a max of 2 houses? Or that you can only own 1 not being lived in by your immediate family?
I can see several reasonable use cases for having 1 extra house, including when an old person dies and the family takes a while to decide what's happening with their previous house. And we could debate those cases, and maybe even decide it's not worth arguing over 2 or 3 extra, because that isn't the biggest problem.
But I think we could possibly mostly agree that having one person or company own 5 or 10 or 50 or 500 houses just to extract profit from them is not good for overall wellbeing.
#housing #law #HouseOwnership #HousingMarket #renting #RentalMarket

@arXiv_csDS_bot@mastoxiv.page
2025-06-06 07:17:33

Faster MPC Algorithms for Approximate Allocation in Uniformly Sparse Graphs
Jakub {\L}\k{a}cki, Slobodan Mitrovi\'c, Srikkanth Ramachandran, Wen-Horng Sheu
arxiv.org/abs/2506.04524

@padraig@mastodon.ie
2025-06-01 13:58:30

I am looking at switching away from Spotify and currently looking at Apple Music.
I can understand artists/labels not publishing to Apple Music, no problem with that.
The problem I have is that 1 track on the album (which just happens to be my favourite of the album) is just not there on Apple Music.
It's not geo-locked (I'll get onto that in a min) but my god, it is so stupid.
Thankfully this particular artist, I support on Bandcamp, so no major loss there.

@ErikJonker@mastodon.social
2025-06-29 11:33:30

Great article from NYT about sheikh Mansour bin Zayed al-Nahyan from the UAE. For me it illustrates the bigger problem of the middle-east/gulfstates, the absence of any meaningful democracy, too rich oligarchs with too much power. Politically the people are living in medieval times there.

@arXiv_csLG_bot@mastoxiv.page
2025-07-31 09:37:41

Prediction of acoustic field in 1-D uniform duct with varying mean flow and temperature using neural networks
D. Veerababu, Prasanta K. Ghosh
arxiv.org/abs/2507.22370

@grumpybozo@toad.social
2025-06-03 17:12:01

There’s exactly 1 narrow way that it’s true. Before widespread #WFH, attackers often had an insurmountable barrier: no way into the business network from the Internet. At the last gig (2008) where I had to visit a “workplace” regularly, inbound remote access was officially non-existent & outbound Internet access all went through restrictive web proxies.

@arXiv_quantph_bot@mastoxiv.page
2025-07-30 10:12:51

Solving a real-world modular logistic scheduling problem with a quantum-classical metaheuristics
Florian Krellner, Abhishek Awasthi, Nico Kraus, Sarah Braun, Michael Poppel, Daniel Porawski
arxiv.org/abs/2507.21701

@arXiv_csCE_bot@mastoxiv.page
2025-08-04 12:02:38

Replaced article(s) found for cs.CE. arxiv.org/list/cs.CE/new
[1/1]:
- The time slot allocation problem in liberalised passenger railway markets: a multi-objective appr...
Be\v{s}inovi\'c, Garc\'ia-R\'odenas, L\'opez-Garc\'ia, L\'opez-G\'omez, Mart\'i…

@arXiv_mathOC_bot@mastoxiv.page
2025-08-05 10:36:21

Exact algorithms for quadratic optimization over roots of unity
Ahmad Al-Sulami, Hamza Fawzi, Shengding Sun
arxiv.org/abs/2508.02006 arxiv.…

@arXiv_mathFA_bot@mastoxiv.page
2025-07-08 09:59:10

On the dynamics of a semigroup and its relation with the Riemann Hypothesis
Carlos F. \'Alvarez, Juan Manzur
arxiv.org/abs/2507.03625

@arXiv_csDS_bot@mastoxiv.page
2025-06-06 07:17:52

Resilient Pattern Mining
Pengxin Bian, Panagiotis Charalampopoulos, Lorraine A. K. Ayad, Manal Mohamed, Solon P. Pissis, Grigorios Loukides
arxiv.org/abs/2506.04935

@arXiv_mathCO_bot@mastoxiv.page
2025-07-08 12:08:40

Factorization of Basic Hypergeometric Series
Jonathan G. Bradley-Thrush
arxiv.org/abs/2507.04313 arxiv.org/pdf/2507.0…

@arXiv_mathAP_bot@mastoxiv.page
2025-07-08 12:50:40

Fractional Infinity Laplacian with Obstacle
Samer Dweik, Ahmad Sabra
arxiv.org/abs/2507.04328 arxiv.org/pdf/2507.0432…

@arXiv_mathPR_bot@mastoxiv.page
2025-06-03 17:13:45

This arxiv.org/abs/2501.00671 has been replaced.
initial toot: mastoxiv.page/@arXiv_mat…

@arXiv_mathGR_bot@mastoxiv.page
2025-06-06 07:25:16

Computing $H$-equations with 2-by-2 integral matrices
Gemma Bastardas, Enric Ventura
arxiv.org/abs/2506.05272 arxiv.o…

@arXiv_mathCO_bot@mastoxiv.page
2025-08-07 09:00:14

When Are Standard Graph Products Isomorphic?
Priti Prasanna Mondal, M. Rajesh Kannan, Fouzul Atik
arxiv.org/abs/2508.04137 arxiv.org/pdf/25…

@arXiv_mathNA_bot@mastoxiv.page
2025-07-01 11:03:23

Error analysis for a Finite Element Discretization of a radially symmetric harmonic map heat flow problem
Nam Anh Nguyen, Arnold Reusken
arxiv.org/abs/2506.23748

@arXiv_mathAP_bot@mastoxiv.page
2025-07-08 13:03:51

Non-radial minimizers for Hardy--Sobolev inequalities in non-convex cones
A. I. Nazarov, N. V. Rastegaev
arxiv.org/abs/2507.04470

@arXiv_mathNT_bot@mastoxiv.page
2025-06-05 07:26:22

Generalized Hardy's identity for the astroid-type p-circle lattice point problem
Masaya Kitajima
arxiv.org/abs/2506.03331

@arXiv_csDS_bot@mastoxiv.page
2025-07-08 09:32:20

Tight Guarantees for Cut-Relative Survivable Network Design via a Decomposition Technique
Nikhil Kumar, JJ Nan, Chaitanya Swamy
arxiv.org/abs/2507.04473

@arXiv_mathGT_bot@mastoxiv.page
2025-07-01 09:28:23

Unknotting number is not additive under connected sum
Mark Brittenham, Susan Hermiller
arxiv.org/abs/2506.24088 arxiv…

@arXiv_csDC_bot@mastoxiv.page
2025-08-05 08:04:10

Faster Distributed $\Delta$-Coloring via a Reduction to MIS
Yann Bourreau, Sebastian Brandt, Alexandre Nolin
arxiv.org/abs/2508.01762 arxiv…

@arXiv_mathGR_bot@mastoxiv.page
2025-08-05 08:59:20

On embedding of ample semigroups in inverse semigroups
Nasir Sohail, Aftab Hussain Shah, Kristo V\"aljako
arxiv.org/abs/2508.01949 arx…

@arXiv_mathPR_bot@mastoxiv.page
2025-06-03 17:17:27

This arxiv.org/abs/2501.10302 has been replaced.
initial toot: mastoxiv.page/@arXiv_mat…

@arXiv_mathCO_bot@mastoxiv.page
2025-07-03 08:59:50

Spectral extremal problem for the odd prism
Xinhui Duan, Lu Lu
arxiv.org/abs/2507.01266 arxiv.org/pdf/2507.01266

@arXiv_mathNT_bot@mastoxiv.page
2025-07-03 09:00:30

A weighted divisor problem and exponential sum
Kritika Aggarwal, Debika Banerjee
arxiv.org/abs/2507.01891 arxiv.org/p…

@arXiv_mathCO_bot@mastoxiv.page
2025-08-05 10:43:00

Bootstrap Percolation, Indecomposable Permutations, and the n-Kings problem
Mark Huibregtse, Cristobal Lemus-Vidales, David Vella
arxiv.org/abs/2508.02030

@arXiv_mathNT_bot@mastoxiv.page
2025-06-03 07:34:49

Determining unit groups and $\mathrm{K}_1$ of finite rings
Tommy Hofmann
arxiv.org/abs/2506.00266 arxiv.org/pdf/2506.…

@arXiv_mathAP_bot@mastoxiv.page
2025-06-02 07:24:55

$C^{1,\alpha}$ regularity of the solution for the obstacle problem for the linearized Monge-Amp\`ere operator
Meng Ji
arxiv.org/abs/2505.24410

@arXiv_csDS_bot@mastoxiv.page
2025-07-03 07:56:10

Breaking the $n^{1.5}$ Additive Error Barrier for Private and Efficient Graph Sparsification via Private Expander Decomposition
Anders Aamand, Justin Y. Chen, Mina Dalirrooyfard, Slobodan Mitrovi\'c, Yuriy Nevmyvaka, Sandeep Silwal, Yinzhan Xu
arxiv.org/abs/2507.01873

@arXiv_mathNT_bot@mastoxiv.page
2025-06-03 07:43:34

On one of Erd\H{o}s' Problems -- An Efficient Search for Benelux Pairs
Christian Hercher
arxiv.org/abs/2506.01099

@arXiv_csDS_bot@mastoxiv.page
2025-08-05 16:42:46

Replaced article(s) found for cs.DS. arxiv.org/list/cs.DS/new
[1/1]:
- A Maximum Linear Arrangement Problem on Directed Graphs
Matt DeVos, Kathryn Nurse

@arXiv_mathAP_bot@mastoxiv.page
2025-08-05 17:36:40

Replaced article(s) found for math.AP. arxiv.org/list/math.AP/new
[1/1]:
- Subelliptic $p$-Laplacian spectral problem for H\"ormander vector fields
Mukhtar Karazym, Durvudkhan Suragan

@arXiv_mathCO_bot@mastoxiv.page
2025-06-26 09:32:40

On the Erd\H{o}s-Ko-Rado problem of flags with type $\{1, n-3 \}$ of finite sets
Philipp Heering
arxiv.org/abs/2506.20556

@arXiv_csDS_bot@mastoxiv.page
2025-07-01 10:14:33

A Refined Kernel for $d$-Hitting Set
Yuxi Liu, Mingyu Xiao
arxiv.org/abs/2506.24114 arxiv.org/pdf/2506.24114

@arXiv_mathAP_bot@mastoxiv.page
2025-06-03 07:31:31

Shape derivative approach to fractional overdetermined problems
Sidy M. Djitte, Ignace A. Minlend
arxiv.org/abs/2506.00268

@arXiv_mathCO_bot@mastoxiv.page
2025-06-02 07:24:40

Code-based $[3,1]$-avoiders in finite affine spaces $\mathrm{AG}(n,2)$
Benedek Kov\'acs
arxiv.org/abs/2505.24072

@arXiv_mathNT_bot@mastoxiv.page
2025-06-03 16:57:57

This arxiv.org/abs/2405.05727 has been replaced.
initial toot: mastoxiv.page/@arXiv_mat…

@arXiv_mathAP_bot@mastoxiv.page
2025-07-04 08:41:11

Global existence of the solution of the modified Camassa-Holm equation with step-like boundary conditions
I. Karpenko, D. Shepelsky, G. Teschl
arxiv.org/abs/2507.02100

@arXiv_csDS_bot@mastoxiv.page
2025-06-03 07:23:09

A 0.51-Approximation of Maximum Matching in Sublinear $n^{1.5}$ Time
Sepideh Mahabadi, Mohammad Roghani, Jakub Tarnawski
arxiv.org/abs/2506.01669

@arXiv_mathCO_bot@mastoxiv.page
2025-05-30 07:26:02

Algebraic aspects of the polynomial Littlewood-Offord problem
Zhihan Jin, Matthew Kwan, Lisa Sauermann, Yiting Wang
arxiv.org/abs/2505.23335

@arXiv_mathNT_bot@mastoxiv.page
2025-07-02 08:41:20

On the Frobenius Problem for Some Generalized Fibonacci Subsequences -- II
Ryan Azim Shaikh, Amitabha Tripathi
arxiv.org/abs/2507.00495

@arXiv_mathAP_bot@mastoxiv.page
2025-06-03 07:54:17

General monotone formula for homogeneous $k$-Hessian equation in the exterior domain and its applications
Jiabin Yin, Xingjian Zhou
arxiv.org/abs/2506.01434

@arXiv_mathCO_bot@mastoxiv.page
2025-06-03 07:58:15

Sums and differences of sets: a further improvement over AlphaEvolve
Fan Zheng
arxiv.org/abs/2506.01896 arxiv.org/pdf…

@arXiv_mathNT_bot@mastoxiv.page
2025-06-02 10:10:39

This arxiv.org/abs/2505.00493 has been replaced.
initial toot: mastoxiv.page/@arXiv_mat…

@arXiv_mathCO_bot@mastoxiv.page
2025-08-01 09:34:31

Improved bounds on the postage stamp problem for large numbers of stamps
Eric James Faust, Michael Tait
arxiv.org/abs/2507.23627 arxiv.org/…