@article{12723,
  abstract     = {Lead halide perovskites enjoy a number of remarkable optoelectronic properties. To explain their origin, it is necessary to study how electromagnetic fields interact with these systems. We address this problem here by studying two classical quantities: Faraday rotation and the complex refractive index in a paradigmatic perovskite CH3NH3PbBr3 in a broad wavelength range. We find that the minimal coupling of electromagnetic fields to the k⋅p Hamiltonian is insufficient to describe the observed data even on the qualitative level. To amend this, we demonstrate that there exists a relevant atomic-level coupling between electromagnetic fields and the spin degree of freedom. This spin-electric coupling allows for quantitative description of a number of previous as well as present experimental data. In particular, we use it here to show that the Faraday effect in lead halide perovskites is dominated by the Zeeman splitting of the energy levels and has a substantial beyond-Becquerel contribution. Finally, we present general symmetry-based phenomenological arguments that in the low-energy limit our effective model includes all basis coupling terms to the electromagnetic field in the linear order.},
  author       = {Volosniev, Artem and Shiva Kumar, Abhishek and Lorenc, Dusan and Ashourishokri, Younes and Zhumekenov, Ayan A. and Bakr, Osman M. and Lemeshko, Mikhail and Alpichshev, Zhanybek},
  issn         = {1079-7114},
  journal      = {Physical Review Letters},
  keywords     = {General Physics and Astronomy},
  number       = {10},
  publisher    = {American Physical Society},
  title        = {{Spin-electric coupling in lead halide perovskites}},
  doi          = {10.1103/physrevlett.130.106901},
  volume       = {130},
  year         = {2023},
}

@article{12724,
  abstract     = {We use general symmetry-based arguments to construct an effective model suitable for studying optical properties of lead halide perovskites. To build the model, we identify an atomic-level interaction between electromagnetic fields and the spin degree of freedom that should be added to a minimally coupled k⋅p Hamiltonian. As a first application, we study two basic optical characteristics of the material: the Verdet constant and the refractive index. Beyond these linear characteristics of the material, the model is suitable for calculating nonlinear effects such as the third-order optical susceptibility. Analysis of this quantity shows that the geometrical properties of the spin-electric term imply isotropic optical response of the system, and that optical anisotropy of lead halide perovskites is a manifestation of hopping of charge carriers. To illustrate this, we discuss third-harmonic generation.},
  author       = {Volosniev, Artem and Shiva Kumar, Abhishek and Lorenc, Dusan and Ashourishokri, Younes and Zhumekenov, Ayan and Bakr, Osman M. and Lemeshko, Mikhail and Alpichshev, Zhanybek},
  issn         = {2469-9969},
  journal      = {Physical Review B},
  number       = {12},
  publisher    = {American Physical Society},
  title        = {{Effective model for studying optical properties of lead halide perovskites}},
  doi          = {10.1103/physrevb.107.125201},
  volume       = {107},
  year         = {2023},
}

@phdthesis{12732,
  abstract     = {Nonergodic systems, whose out-of-equilibrium dynamics fail to thermalize, provide a fascinating research direction both for fundamental reasons and for application in state of the art quantum devices.
Going beyond the description of statistical mechanics, ergodicity breaking yields a new paradigm in quantum many-body physics, introducing novel phases of matter with no counterpart at equilibrium.
In this Thesis, we address different open questions in the field, focusing on disorder-induced many-body localization (MBL) and on weak ergodicity breaking in kinetically constrained models.
In particular, we contribute to the debate about transport in kinetically constrained models, studying the effect of $U(1)$ conservation and inversion-symmetry breaking in a family of quantum East models.
Using tensor network techniques, we analyze the dynamics of large MBL systems beyond the limit of exact numerical methods.
In this setting, we approach the debated topic of the coexistence of localized and thermal eigenstates separated by energy thresholds known as many-body mobility edges.
Inspired by recent experiments, our work further investigates the localization of a small bath induced by the coupling to a large localized chain, the so-called MBL proximity effect.

In the first Chapter, we introduce a family of particle-conserving kinetically constrained models, inspired by the quantum East model.
The system we study features strong inversion-symmetry breaking, due to the nature of the correlated hopping.
We show that these models host so-called quantum Hilbert space fragmentation, consisting of disconnected subsectors in an entangled basis, and further provide an analytical description of this phenomenon.
We further probe its effect on dynamics of simple product states, showing revivals in fidelity and local observalbes.
The study of dynamics within the largest subsector reveals an anomalous transient superdiffusive behavior crossing over to slow logarithmic dynamics at later times.
This work suggests that particle conserving constrained models with inversion-symmetry breaking realize new universality classes of dynamics and invite their further theoretical and experimental studies.

Next, we use kinetic constraints and disorder to design a model with many-body mobility edges in particle density.
This feature allows to study the dynamics of localized and thermal states in large systems beyond the limitations of previous studies.
The time-evolution shows typical signatures of localization at small densities, replaced by thermal behavior at larger densities.
Our results provide evidence in favor of the stability of many-body mobility edges, which was recently challenged by a theoretical argument.
To support our findings, we probe the mechanism proposed as a cause of delocalization in many-body localized systems with mobility edges suggesting its ineffectiveness in the model studied.

In the last Chapter of this Thesis, we address the topic of many-body localization proximity effect.
We study a model inspired by recent experiments, featuring Anderson localized coupled to a small bath of free hard-core bosons.
The interaction among the two particle species results in non-trivial dynamics, which we probe using tensor network techniques.
Our simulations show convincing evidence of many-body localization proximity effect when the bath is composed by a single free particle and interactions are strong.
We furthter observe an anomalous entanglement dynamics, which we explain through a phenomenological theory.
Finally, we extract highly excited eigenstates of large systems, providing supplementary evidence in favor of our findings.},
  author       = {Brighi, Pietro},
  issn         = {2663-337X},
  pages        = {158},
  publisher    = {Institute of Science and Technology Austria},
  title        = {{Ergodicity breaking in disordered and kinetically constrained quantum many-body systems}},
  doi          = {10.15479/at:ista:12732},
  year         = {2023},
}

@inproceedings{12735,
  abstract     = {Asynchronous programming has gained significant popularity over the last decade: support for this programming pattern is available in many popular languages via libraries and native language implementations, typically in the form of coroutines or the async/await construct. Instead of programming via shared memory, this concept assumes implicit synchronization through message passing. The key data structure enabling such communication is the rendezvous channel. Roughly, a rendezvous channel is a blocking queue of size zero, so both send(e) and receive() operations wait for each other, performing a rendezvous when they meet. To optimize the message passing pattern, channels are usually equipped with a fixed-size buffer, so sends do not suspend and put elements into the buffer until its capacity is exceeded. This primitive is known as a buffered channel.

This paper presents a fast and scalable algorithm for both rendezvous and buffered channels. Similarly to modern queues, our solution is based on an infinite array with two positional counters for send(e) and receive() operations, leveraging the unconditional Fetch-And-Add instruction to update them. Yet, the algorithm requires non-trivial modifications of this classic pattern, in order to support the full channel semantics, such as buffering and cancellation of waiting requests. We compare the performance of our solution to that of the Kotlin implementation, as well as against other academic proposals, showing up to 9.8× speedup. To showcase its expressiveness and performance, we also integrated the proposed algorithm into the standard Kotlin Coroutines library, replacing the previous channel implementations.},
  author       = {Koval, Nikita and Alistarh, Dan-Adrian and Elizarov, Roman},
  booktitle    = {Proceedings of the ACM SIGPLAN Symposium on Principles and Practice of Parallel Programming},
  isbn         = {9798400700156},
  location     = {Montreal, QC, Canada},
  pages        = {107--118},
  publisher    = {Association for Computing Machinery},
  title        = {{Fast and scalable channels in Kotlin Coroutines}},
  doi          = {10.1145/3572848.3577481},
  year         = {2023},
}

@misc{12736,
  abstract     = {Although a wide variety of handcrafted concurrent data structures have been proposed, there is considerable interest in universal approaches (Universal Constructions or UCs) for building concurrent data structures. UCs (semi-)automatically convert a sequential data structure into a concurrent one. The simplest approach uses locks [3, 6] that protect a sequential data structure and allow only one process to access it at a time. However, the resulting data structure is blocking. Most work on UCs instead focuses on obtaining non-blocking progress guarantees such as obstruction-freedom, lock-freedom or wait-freedom. Many non-blocking UCs have appeared. Key examples include the seminal wait-free UC [2] by Herlihy, a NUMA-aware UC [10] by Yi et al., and an efficient UC for large objects [1] by Fatourou et al.},
  author       = {Aksenov, Vitaly and Brown, Trevor A and Fedorov, Alexander and Kokorin, Ilya},
  booktitle    = {Proceedings of the ACM SIGPLAN Symposium on Principles and Practice of Parallel Programming},
  isbn         = {9798400700156},
  location     = {Montreal, QB, Canada},
  pages        = {438--440},
  publisher    = {Association for Computing Machinery},
  title        = {{Unexpected scaling in path copying trees}},
  doi          = {10.1145/3572848.3577512},
  year         = {2023},
}

@article{12738,
  abstract     = {We study turn-based stochastic zero-sum games with lexicographic preferences over objectives. Stochastic games are standard models in control, verification, and synthesis of stochastic reactive systems that exhibit both randomness as well as controllable and adversarial non-determinism. Lexicographic order allows one to consider multiple objectives with a strict preference order. To the best of our knowledge, stochastic games with lexicographic objectives have not been studied before. For a mixture of reachability and safety objectives, we show that deterministic lexicographically optimal strategies exist and memory is only required to remember the already satisfied and violated objectives. For a constant number of objectives, we show that the relevant decision problem is in NP∩coNP, matching the current known bound for single objectives; and in general the decision problem is PSPACE-hard and can be solved in NEXPTIME∩coNEXPTIME. We present an algorithm that computes the lexicographically optimal strategies via a reduction to the computation of optimal strategies in a sequence of single-objectives games. For omega-regular objectives, we restrict our analysis to one-player games, also known as Markov decision processes. We show that lexicographically optimal strategies exist and need either randomization or finite memory. We present an algorithm that solves the relevant decision problem in polynomial time. We have implemented our algorithms and report experimental results on various case studies.},
  author       = {Chatterjee, Krishnendu and Katoen, Joost P and Mohr, Stefanie and Weininger, Maximilian and Winkler, Tobias},
  issn         = {1572-8102},
  journal      = {Formal Methods in System Design},
  publisher    = {Springer Nature},
  title        = {{Stochastic games with lexicographic objectives}},
  doi          = {10.1007/s10703-023-00411-4},
  year         = {2023},
}

@article{12747,
  abstract     = {Muscle degeneration is the most prevalent cause for frailty and dependency in inherited diseases and ageing. Elucidation of pathophysiological mechanisms, as well as effective treatments for muscle diseases, represents an important goal in improving human health. Here, we show that the lipid synthesis enzyme phosphatidylethanolamine cytidyltransferase (PCYT2/ECT) is critical to muscle health. Human deficiency in PCYT2 causes a severe disease with failure to thrive and progressive weakness. pcyt2-mutant zebrafish and muscle-specific Pcyt2-knockout mice recapitulate the participant phenotypes, with failure to thrive, progressive muscle weakness and accelerated ageing. Mechanistically, muscle Pcyt2 deficiency affects cellular bioenergetics and membrane lipid bilayer structure and stability. PCYT2 activity declines in ageing muscles of mice and humans, and adeno-associated virus-based delivery of PCYT2 ameliorates muscle weakness in Pcyt2-knockout and old mice, offering a therapy for individuals with a rare disease and muscle ageing. Thus, PCYT2 plays a fundamental and conserved role in vertebrate muscle health, linking PCYT2 and PCYT2-synthesized lipids to severe muscle dystrophy and ageing.},
  author       = {Cikes, Domagoj and Elsayad, Kareem and Sezgin, Erdinc and Koitai, Erika and Ferenc, Torma and Orthofer, Michael and Yarwood, Rebecca and Heinz, Leonhard X. and Sedlyarov, Vitaly and Darwish-Miranda, Nasser and Taylor, Adrian and Grapentine, Sophie and al-Murshedi, Fathiya and Abot, Anne and Weidinger, Adelheid and Kutchukian, Candice and Sanchez, Colline and Cronin, Shane J. F. and Novatchkova, Maria and Kavirayani, Anoop and Schuetz, Thomas and Haubner, Bernhard and Haas, Lisa and Hagelkruys, Astrid and Jackowski, Suzanne and Kozlov, Andrey and Jacquemond, Vincent and Knauf, Claude and Superti-Furga, Giulio and Rullman, Eric and Gustafsson, Thomas and McDermot, John and Lowe, Martin and Radak, Zsolt and Chamberlain, Jeffrey S. and Bakovic, Marica and Banka, Siddharth and Penninger, Josef M.},
  issn         = {2522-5812},
  journal      = {Nature Metabolism},
  keywords     = {Cell Biology, Physiology (medical), Endocrinology, Diabetes and Metabolism, Internal Medicine},
  pages        = {495--515},
  publisher    = {Springer Nature},
  title        = {{PCYT2-regulated lipid biosynthesis is critical to muscle health and ageing}},
  doi          = {10.1038/s42255-023-00766-2},
  volume       = {5},
  year         = {2023},
}

@article{12756,
  abstract     = {ESCRT-III family proteins form composite polymers that deform and cut membrane tubes in the context of a wide range of cell biological processes across the tree of life. In reconstituted systems, sequential changes in the composition of ESCRT-III polymers induced by the AAA–adenosine triphosphatase Vps4 have been shown to remodel membranes. However, it is not known how composite ESCRT-III polymers are organized and remodeled in space and time in a cellular context. Taking advantage of the relative simplicity of the ESCRT-III–dependent division system in Sulfolobus acidocaldarius, one of the closest experimentally tractable prokaryotic relatives of eukaryotes, we use super-resolution microscopy, electron microscopy, and computational modeling to show how CdvB/CdvB1/CdvB2 proteins form a precisely patterned composite ESCRT-III division ring, which undergoes stepwise Vps4-dependent disassembly and contracts to cut cells into two. These observations lead us to suggest sequential changes in a patterned composite polymer as a general mechanism of ESCRT-III–dependent membrane remodeling.},
  author       = {Hurtig, Fredrik and Burgers, Thomas C.Q. and Cezanne, Alice and Jiang, Xiuyun and Mol, Frank N. and Traparić, Jovan and Pulschen, Andre Arashiro and Nierhaus, Tim and Tarrason-Risa, Gabriel and Harker-Kirschneck, Lena and Löwe, Jan and Šarić, Anđela and Vlijm, Rifka and Baum, Buzz},
  issn         = {2375-2548},
  journal      = {Science Advances},
  number       = {11},
  publisher    = {American Association for the Advancement of Science},
  title        = {{The patterned assembly and stepwise Vps4-mediated disassembly of composite ESCRT-III polymers drives archaeal cell division}},
  doi          = {10.1126/sciadv.ade5224},
  volume       = {9},
  year         = {2023},
}

@article{12757,
  abstract     = {My group and myself have studied respiratory complex I for almost 30 years, starting in 1994 when it was known as a L-shaped giant ‘black box' of bioenergetics. First breakthrough was the X-ray structure of the peripheral arm, followed by structures of the membrane arm and finally the entire complex from Thermus thermophilus. The developments in cryo-EM technology allowed us to solve the first complete structure of the twice larger, ∼1 MDa mammalian enzyme in 2016. However, the mechanism coupling, over large distances, the transfer of two electrons to pumping of four protons across the membrane remained an enigma. Recently we have solved high-resolution structures of mammalian and bacterial complex I under a range of redox conditions, including catalytic turnover. This allowed us to propose a robust and universal mechanism for complex I and related protein families. Redox reactions initially drive conformational changes around the quinone cavity and a long-distance transfer of substrate protons. These set up a stage for a series of electrostatically driven proton transfers along the membrane arm (‘domino effect'), eventually resulting in proton expulsion from the distal antiporter-like subunit. The mechanism radically differs from previous suggestions, however, it naturally explains all the unusual structural features of complex I. In this review I discuss the state of knowledge on complex I, including the current most controversial issues.},
  author       = {Sazanov, Leonid A},
  issn         = {1470-8728},
  journal      = {The Biochemical Journal},
  number       = {5},
  pages        = {319--333},
  publisher    = {Portland Press},
  title        = {{From the 'black box' to 'domino effect' mechanism: What have we learned from the structures of respiratory complex I}},
  doi          = {10.1042/BCJ20210285},
  volume       = {480},
  year         = {2023},
}

@article{12758,
  abstract     = {AlphaFold changed the field of structural biology by achieving three-dimensional (3D) structure prediction from protein sequence at experimental quality. The astounding success even led to claims that the protein folding problem is “solved”. However, protein folding problem is more than just structure prediction from sequence. Presently, it is unknown if the AlphaFold-triggered revolution could help to solve other problems related to protein folding. Here we assay the ability of AlphaFold to predict the impact of single mutations on protein stability (ΔΔG) and function. To study the question we extracted the pLDDT and <pLDDT> metrics from AlphaFold predictions before and after single mutation in a protein and correlated the predicted change with the experimentally known ΔΔG values. Additionally, we correlated the same AlphaFold pLDDT metrics with the impact of a single mutation on structure using a large scale dataset of single mutations in GFP with the experimentally assayed levels of fluorescence. We found a very weak or no correlation between AlphaFold output metrics and change of protein stability or fluorescence. Our results imply that AlphaFold may not be immediately applied to other problems or applications in protein folding.},
  author       = {Pak, Marina A. and Markhieva, Karina A. and Novikova, Mariia S. and Petrov, Dmitry S. and Vorobyev, Ilya S. and Maksimova, Ekaterina and Kondrashov, Fyodor and Ivankov, Dmitry N.},
  issn         = {1932-6203},
  journal      = {PLoS ONE},
  number       = {3},
  publisher    = {Public Library of Science},
  title        = {{Using AlphaFold to predict the impact of single mutations on protein stability and function}},
  doi          = {10.1371/journal.pone.0282689},
  volume       = {18},
  year         = {2023},
}

@article{12759,
  abstract     = {Stereological methods for estimating the 3D particle size and density from 2D projections are essential to many research fields. These methods are, however, prone to errors arising from undetected particle profiles due to sectioning and limited resolution, known as ‘lost caps’. A potential solution developed by Keiding, Jensen, and Ranek in 1972, which we refer to as the Keiding model, accounts for lost caps by quantifying the smallest detectable profile in terms of its limiting ‘cap angle’ (ϕ), a size-independent measure of a particle’s distance from the section surface. However, this simple solution has not been widely adopted nor tested. Rather, model-independent design-based stereological methods, which do not explicitly account for lost caps, have come to the fore. Here, we provide the first experimental validation of the Keiding model by comparing the size and density of particles estimated from 2D projections with direct measurement from 3D EM reconstructions of the same tissue. We applied the Keiding model to estimate the size and density of somata, nuclei and vesicles in the cerebellum of mice and rats, where high packing density can be problematic for design-based methods. Our analysis reveals a Gaussian distribution for ϕ rather than a single value. Nevertheless, curve fits of the Keiding model to the 2D diameter distribution accurately estimate the mean ϕ and 3D diameter distribution. While systematic testing using simulations revealed an upper limit to determining ϕ, our analysis shows that estimated ϕ can be used to determine the 3D particle density from the 2D density under a wide range of conditions, and this method is potentially more accurate than minimum-size-based lost-cap corrections and disector methods. Our results show the Keiding model provides an efficient means of accurately estimating the size and density of particles from 2D projections even under conditions of a high density.},
  author       = {Rothman, Jason Seth and Borges Merjane, Carolina and Holderith, Noemi and Jonas, Peter M and Angus Silver, R.},
  issn         = {1932-6203},
  journal      = {PLoS ONE},
  number       = {3 March},
  publisher    = {Public Library of Science},
  title        = {{Validation of a stereological method for estimating particle size and density from 2D projections with high accuracy}},
  doi          = {10.1371/journal.pone.0277148},
  volume       = {18},
  year         = {2023},
}

@inproceedings{12760,
  abstract     = {Dynamic programming (DP) is one of the fundamental paradigms in algorithm design. However,
many DP algorithms have to fill in large DP tables, represented by two-dimensional arrays, which causes at least quadratic running times and space usages. This has led to the development of improved algorithms for special cases when the DPs satisfy additional properties like, e.g., the Monge property or total monotonicity.
In this paper, we consider a new condition which assumes (among some other technical assumptions) that the rows of the DP table are monotone. Under this assumption, we introduce
a novel data structure for computing (1 + ϵ)-approximate DP solutions in near-linear time and
space in the static setting, and with polylogarithmic update times when the DP entries change
dynamically. To the best of our knowledge, our new condition is incomparable to previous conditions and is the first which allows to derive dynamic algorithms based on existing DPs. Instead of using two-dimensional arrays to store the DP tables, we store the rows of the DP tables using monotone piecewise constant functions. This allows us to store length-n DP table rows with entries in [0, W] using only polylog(n, W) bits, and to perform operations, such as (min, +)-convolution or rounding, on these functions in polylogarithmic time.
We further present several applications of our data structure. For bicriteria versions of k-balanced graph partitioning and simultaneous source location, we obtain the first dynamic algorithms with subpolynomial update times, as well as the first static algorithms using only near-linear time and space. Additionally, we obtain the currently fastest algorithm for fully dynamic knapsack.},
  author       = {Henzinger, Monika H and Neumann, Stefan and Räcke, Harald and Schmid, Stefan},
  booktitle    = {40th International Symposium on Theoretical Aspects of Computer Science},
  isbn         = {9783959772662},
  issn         = {1868-8969},
  location     = {Hamburg, Germany},
  publisher    = {Schloss Dagstuhl - Leibniz-Zentrum für Informatik},
  title        = {{Dynamic maintenance of monotone dynamic programs and applications}},
  doi          = {10.4230/LIPIcs.STACS.2023.36},
  volume       = {254},
  year         = {2023},
}

@article{12761,
  abstract     = {We consider the fluctuations of regular functions f of a Wigner matrix W viewed as an entire matrix f (W). Going beyond the well-studied tracial mode, Trf (W), which is equivalent to the customary linear statistics of eigenvalues, we show that Trf (W)A is asymptotically normal for any nontrivial bounded deterministic matrix A. We identify three different and asymptotically independent modes of this fluctuation, corresponding to the tracial part, the traceless diagonal part and the off-diagonal part of f (W) in the entire mesoscopic regime, where we find that the off-diagonal modes fluctuate on a much smaller scale than the tracial mode. As a main motivation to study CLT in such generality on small mesoscopic scales, we determine
the fluctuations in the eigenstate thermalization hypothesis (Phys. Rev. A 43 (1991) 2046–2049), that is, prove that the eigenfunction overlaps with any deterministic matrix are asymptotically Gaussian after a small spectral averaging. Finally, in the macroscopic regime our result also generalizes (Zh. Mat. Fiz. Anal. Geom. 9 (2013) 536–581, 611, 615) to complex W and to all crossover ensembles in between. The main technical inputs are the recent
multiresolvent local laws with traceless deterministic matrices from the companion paper (Comm. Math. Phys. 388 (2021) 1005–1048).},
  author       = {Cipolloni, Giorgio and Erdös, László and Schröder, Dominik J},
  issn         = {1050-5164},
  journal      = {Annals of Applied Probability},
  number       = {1},
  pages        = {447--489},
  publisher    = {Institute of Mathematical Statistics},
  title        = {{Functional central limit theorems for Wigner matrices}},
  doi          = {10.1214/22-AAP1820},
  volume       = {33},
  year         = {2023},
}

@article{12762,
  abstract     = {Neurons in the brain are wired into adaptive networks that exhibit collective dynamics as diverse as scale-specific oscillations and scale-free neuronal avalanches. Although existing models account for oscillations and avalanches separately, they typically do not explain both phenomena, are too complex to analyze analytically or intractable to infer from data rigorously. Here we propose a feedback-driven Ising-like class of neural networks that captures avalanches and oscillations simultaneously and quantitatively. In the simplest yet fully microscopic model version, we can analytically compute the phase diagram and make direct contact with human brain resting-state activity recordings via tractable inference of the model’s two essential parameters. The inferred model quantitatively captures the dynamics over a broad range of scales, from single sensor oscillations to collective behaviors of extreme events and neuronal avalanches. Importantly, the inferred parameters indicate that the co-existence of scale-specific (oscillations) and scale-free (avalanches) dynamics occurs close to a non-equilibrium critical point at the onset of self-sustained oscillations.},
  author       = {Lombardi, Fabrizio and Pepic, Selver and Shriki, Oren and Tkačik, Gašper and De Martino, Daniele},
  issn         = {2662-8457},
  journal      = {Nature Computational Science},
  pages        = {254--263},
  publisher    = {Springer Nature},
  title        = {{Statistical modeling of adaptive neural networks explains co-existence of avalanches and oscillations in resting human brain}},
  doi          = {10.1038/s43588-023-00410-9},
  volume       = {3},
  year         = {2023},
}

@article{12763,
  abstract     = {Kleinjohann (Archiv der Mathematik 35(1):574–582, 1980; Mathematische Zeitschrift 176(3), 327–344, 1981) and Bangert (Archiv der Mathematik 38(1):54–57, 1982) extended the reach rch(S) from subsets S of Euclidean space to the reach rchM(S) of subsets S of Riemannian manifolds M, where M is smooth (we’ll assume at least C3). Bangert showed that sets of positive reach in Euclidean space and Riemannian manifolds are very similar. In this paper we introduce a slight variant of Kleinjohann’s and Bangert’s extension and quantify the similarity between sets of positive reach in Euclidean space and Riemannian manifolds in a new way: Given p∈M and q∈S, we bound the local feature size (a local version of the reach) of its lifting to the tangent space via the inverse exponential map (exp−1p(S)) at q, assuming that rchM(S) and the geodesic distance dM(p,q) are bounded. These bounds are motivated by the importance of the reach and local feature size to manifold learning, topological inference, and triangulating manifolds and the fact that intrinsic approaches circumvent the curse of dimensionality.},
  author       = {Boissonnat, Jean Daniel and Wintraecken, Mathijs},
  issn         = {2367-1734},
  journal      = {Journal of Applied and Computational Topology},
  pages        = {619--641},
  publisher    = {Springer Nature},
  title        = {{The reach of subsets of manifolds}},
  doi          = {10.1007/s41468-023-00116-x},
  volume       = {7},
  year         = {2023},
}

@article{12764,
  abstract     = {We study a new discretization of the Gaussian curvature for polyhedral surfaces. This discrete Gaussian curvature is defined on each conical singularity of a polyhedral surface as the quotient of the angle defect and the area of the Voronoi cell corresponding to the singularity. We divide polyhedral surfaces into discrete conformal classes using a generalization of discrete conformal equivalence pioneered by Feng Luo. We subsequently show that, in every discrete conformal class, there exists a polyhedral surface with constant discrete Gaussian curvature. We also provide explicit examples to demonstrate that this surface is in general not unique.},
  author       = {Kourimska, Hana},
  issn         = {1432-0444},
  journal      = {Discrete and Computational Geometry},
  pages        = {123--153},
  publisher    = {Springer Nature},
  title        = {{Discrete yamabe problem for polyhedral surfaces}},
  doi          = {10.1007/s00454-023-00484-2},
  volume       = {70},
  year         = {2023},
}

@article{12786,
  abstract     = {AMPA glutamate receptors (AMPARs) mediate excitatory neurotransmission throughout the brain. Their signalling is uniquely diversified by brain region-specific auxiliary subunits, providing an opportunity for the development of selective therapeutics. AMPARs associated with TARP γ8 are enriched in the hippocampus, and are targets of emerging anti-epileptic drugs. To understand their therapeutic activity, we determined cryo-EM structures of the GluA1/2-γ8 receptor associated with three potent, chemically diverse ligands. We find that despite sharing a lipid-exposed and water-accessible binding pocket, drug action is differentially affected by binding-site mutants. Together with patch-clamp recordings and MD simulations we also demonstrate that ligand-triggered reorganisation of the AMPAR-TARP interface contributes to modulation. Unexpectedly, one ligand (JNJ-61432059) acts bifunctionally, negatively affecting GluA1 but exerting positive modulatory action on GluA2-containing AMPARs, in a TARP stoichiometry-dependent manner. These results further illuminate the action of TARPs, demonstrate the sensitive balance between positive and negative modulatory action, and provide a mechanistic platform for development of both positive and negative selective AMPAR modulators.},
  author       = {Zhang, Danyang and Lape, Remigijus and Shaikh, Saher A. and Kohegyi, Bianka K. and Watson, Jake and Cais, Ondrej and Nakagawa, Terunaga and Greger, Ingo H.},
  issn         = {2041-1723},
  journal      = {Nature Communications},
  publisher    = {Springer Nature},
  title        = {{Modulatory mechanisms of TARP γ8-selective AMPA receptor therapeutics}},
  doi          = {10.1038/s41467-023-37259-5},
  volume       = {14},
  year         = {2023},
}

@article{12787,
  abstract     = {Populations evolve in spatially heterogeneous environments. While a certain trait might bring a fitness advantage in some patch of the environment, a different trait might be advantageous in another patch. Here, we study the Moran birth–death process with two types of individuals in a population stretched across two patches of size N, each patch favouring one of the two types. We show that the long-term fate of such populations crucially depends on the migration rate μ
 between the patches. To classify the possible fates, we use the distinction between polynomial (short) and exponential (long) timescales. We show that when μ is high then one of the two types fixates on the whole population after a number of steps that is only polynomial in N. By contrast, when μ is low then each type holds majority in the patch where it is favoured for a number of steps that is at least exponential in N. Moreover, we precisely identify the threshold migration rate μ⋆ that separates those two scenarios, thereby exactly delineating the situations that support long-term coexistence of the two types. We also discuss the case of various cycle graphs and we present computer simulations that perfectly match our analytical results.},
  author       = {Svoboda, Jakub and Tkadlec, Josef and Kaveh, Kamran and Chatterjee, Krishnendu},
  issn         = {1471-2946},
  journal      = {Proceedings of the Royal Society A: Mathematical, Physical and Engineering Sciences},
  number       = {2271},
  publisher    = {The Royal Society},
  title        = {{Coexistence times in the Moran process with environmental heterogeneity}},
  doi          = {10.1098/rspa.2022.0685},
  volume       = {479},
  year         = {2023},
}

@article{12788,
  abstract     = {We show that the simplest of existing molecules—closed-shell diatomics not interacting with one another—host topological charges when driven by periodic far-off-resonant laser pulses. A periodically kicked molecular rotor can be mapped onto a “crystalline” lattice in angular momentum space. This allows us to define quasimomenta and the band structure in the Floquet representation, by analogy with the Bloch waves of solid-state physics. Applying laser pulses spaced by 1/3 of the molecular rotational period creates a lattice with three atoms per unit cell with staggered hopping. Within the synthetic dimension of the laser strength, we discover Dirac cones with topological charges. These Dirac cones, topologically protected by reflection and time-reversal symmetry, are reminiscent of (although not equivalent to) that seen in graphene. They—and the corresponding edge states—are broadly tunable by adjusting the laser strength and can be observed in present-day experiments by measuring molecular alignment and populations of rotational levels. This paves the way to study controllable topological physics in gas-phase experiments with small molecules as well as to classify dynamical molecular states by their topological invariants.},
  author       = {Karle, Volker and Ghazaryan, Areg and Lemeshko, Mikhail},
  issn         = {1079-7114},
  journal      = {Physical Review Letters},
  number       = {10},
  publisher    = {American Physical Society},
  title        = {{Topological charges of periodically kicked molecules}},
  doi          = {10.1103/PhysRevLett.130.103202},
  volume       = {130},
  year         = {2023},
}

@article{12789,
  abstract     = {Experiments have shown that charge distributions of granular materials are non-Gaussian, with broad tails that indicate many particles with high charge. This observation has consequences for the behavior of granular materials in many settings, and may bear relevance to the underlying charge transfer mechanism. However, there is the unaddressed possibility that broad tails arise due to experimental uncertainties, as determining the shapes of tails is nontrivial. Here we show that measurement uncertainties can indeed account for most of the tail broadening previously observed. The clue that reveals this is that distributions are sensitive to the electric field at which they are measured; ones measured at low (high) fields have larger (smaller) tails. Accounting for sources of uncertainty, we reproduce this broadening in silico. Finally, we use our results to back out the true charge distribution without broadening, which we find is still non-Guassian, though with substantially different behavior at the tails and indicating significantly fewer highly charged particles. These results have implications in many natural settings where electrostatic interactions, especially among highly charged particles, strongly affect granular behavior.},
  author       = {Mujica, Nicolás and Waitukaitis, Scott R},
  issn         = {2470-0053},
  journal      = {Physical Review E},
  number       = {3},
  publisher    = {American Physical Society},
  title        = {{Accurate determination of the shapes of granular charge distributions}},
  doi          = {10.1103/PhysRevE.107.034901},
  volume       = {107},
  year         = {2023},
}

