We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shoumikdc/arXiv-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test-arxiv.ipynb•115 kB
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"id": "37430e3b",
"metadata": {},
"outputs": [],
"source": [
"import arxiv\n",
"from datetime import datetime, timedelta, timezone, time, date\n",
"from zoneinfo import ZoneInfo\n",
"from google import genai\n",
"import os"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "c40504bc",
"metadata": {},
"outputs": [],
"source": [
"def last_arxiv_new_window(now_et=None):\n",
" ET = ZoneInfo(\"America/New_York\")\n",
" if now_et is None:\n",
" now_et = datetime.now(ET)\n",
" # announcement candidate: today if after 20:00 ET, else yesterday\n",
" candidate = now_et.date() if now_et.time() >= time(20, 0) else (now_et.date() - timedelta(days=1))\n",
" # if candidate falls on Fri/Sat, back up to the last announcement day\n",
" while candidate.weekday() in (4, 5): # Fri=4, Sat=5\n",
" candidate -= timedelta(days=1)\n",
"\n",
" wd = candidate.weekday()\n",
" if wd == 0: # Monday announcement -> window: Fri 14:00 -> Mon 14:00 (3 days)\n",
" start_et = datetime.combine(candidate - timedelta(days=3), time(14, 0), tzinfo=ET)\n",
" end_et = datetime.combine(candidate, time(14, 0), tzinfo=ET)\n",
" elif wd == 6: # Sunday announcement -> window: Thu 14:00 -> Fri 14:00 (see schedule)\n",
" start_et = datetime.combine(candidate - timedelta(days=3), time(14, 0), tzinfo=ET) # Thu 14:00\n",
" end_et = datetime.combine(candidate - timedelta(days=2), time(14, 0), tzinfo=ET) # Fri 14:00\n",
" else:\n",
" # Tue/Wed/Thu announcements -> window is (candidate-1 day 14:00) -> candidate 14:00\n",
" start_et = datetime.combine(candidate - timedelta(days=1), time(14, 0), tzinfo=ET)\n",
" end_et = datetime.combine(candidate, time(14, 0), tzinfo=ET)\n",
"\n",
" # convert to UTC for comparing against API datetimes\n",
" start_utc = start_et.astimezone(ZoneInfo(\"UTC\"))\n",
" end_utc = end_et.astimezone(ZoneInfo(\"UTC\"))\n",
" return start_utc, end_utc, candidate\n",
"\n",
"start, end, announcement_date = last_arxiv_new_window()\n",
"print(\"mailing window (UTC):\", start, \"→\", end, \" (announcement date:\", announcement_date, \")\")\n",
"\n",
"# Query arXiv API (may still lag; increase max_results)\n",
"search = arxiv.Search(\n",
" query=\"cat:quant-ph\",\n",
" max_results=2000,\n",
" sort_by=arxiv.SortCriterion.SubmittedDate,\n",
" sort_order=arxiv.SortOrder.Descending,\n",
")\n",
"client = arxiv.Client()\n",
"new = []\n",
"for r in client.results(search):\n",
" if start <= r.published < end:\n",
" new.append(r)\n",
"\n",
"print(\"Found\", len(new), \"entries via API for that window (expected: match site/RSS).\")\n",
"for r in new:\n",
" print(r.entry_id, r.published, r.title)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "21db3351",
"metadata": {},
"outputs": [],
"source": [
"# Arxiv's daily cutoff is 00:00 UTC\n",
"now = datetime.now(timezone.utc)\n",
"today_utc = datetime(now.year, now.month, now.day, tzinfo=timezone.utc)\n",
"\n",
"# Yesterday's UTC window\n",
"start = today_utc - timedelta(days=2)\n",
"end = today_utc - timedelta(days=1)\n",
"\n",
"print(\"Collecting new submissions from\", start, \"to\", end)\n",
"\n",
"search = arxiv.Search(\n",
" query=\"cat:quant-ph\",\n",
" max_results=200,\n",
" sort_by=arxiv.SortCriterion.SubmittedDate,\n",
" sort_order=arxiv.SortOrder.Descending,\n",
")\n",
"\n",
"client = arxiv.Client()\n",
"\n",
"new_submissions = []\n",
"for result in client.results(search):\n",
" # Important: check the first submission time (published)\n",
" if start <= result.published < end:\n",
" new_submissions.append(result)\n",
"\n",
"# Print them out\n",
"for res in new_submissions:\n",
" print(res.entry_id, res.published, res.title)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "9b7aad50",
"metadata": {},
"outputs": [],
"source": [
"# pip install feedparser\n",
"import feedparser\n",
"from datetime import datetime, timezone\n",
"\n",
"feed = feedparser.parse(\"https://rss.arxiv.org/rss/quant-ph\")\n",
"for e in feed.entries:\n",
" # e.link looks like \"https://arxiv.org/abs/2510.00056\"\n",
" arxiv_id = e.link.rsplit(\"/\", 1)[-1]\n",
" # published_parsed -> time.struct_time (UTC)\n",
" if hasattr(e, \"published_parsed\"):\n",
" pub = datetime(*e.published_parsed[:6], tzinfo=timezone.utc)\n",
" else:\n",
" pub = None\n",
" print(arxiv_id, pub, e.title)\n"
]
},
{
"cell_type": "markdown",
"id": "5f69415b",
"metadata": {},
"source": [
"## Test Gemini"
]
},
{
"cell_type": "code",
"execution_count": 14,
"id": "758913a9",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'title': 'Probing the Critical Point (CritPt) of AI Reasoning: a Frontier Physics Research Benchmark',\n",
" 'title_detail': {'type': 'text/plain',\n",
" 'language': None,\n",
" 'base': 'https://rss.arxiv.org/rss/quant-ph',\n",
" 'value': 'Probing the Critical Point (CritPt) of AI Reasoning: a Frontier Physics Research Benchmark'},\n",
" 'links': [{'rel': 'alternate',\n",
" 'type': 'text/html',\n",
" 'href': 'https://arxiv.org/abs/2509.26574'}],\n",
" 'link': 'https://arxiv.org/abs/2509.26574',\n",
" 'summary': 'arXiv:2509.26574v2 Announce Type: replace-cross \\nAbstract: While large language models (LLMs) with reasoning capabilities are progressing rapidly on high-school math competitions and coding, can they reason effectively through complex, open-ended challenges found in frontier physics research? And crucially, what kinds of reasoning tasks do physicists want LLMs to assist with? To address these questions, we present the CritPt (Complex Research using Integrated Thinking - Physics Test, pronounced \"critical point\"), the first benchmark designed to test LLMs on unpublished, research-level reasoning tasks that broadly covers modern physics research areas, including condensed matter, quantum physics, atomic, molecular & optical physics, astrophysics, high energy physics, mathematical physics, statistical physics, nuclear physics, nonlinear dynamics, fluid dynamics and biophysics. CritPt consists of 71 composite research challenges designed to simulate full-scale research projects at the entry level, which are also decomposed to 190 simpler checkpoint tasks for more fine-grained insights. All problems are newly created by 50+ active physics researchers based on their own research. Every problem is hand-curated to admit a guess-resistant and machine-verifiable answer and is evaluated by an automated grading pipeline heavily customized for advanced physics-specific output formats. We find that while current state-of-the-art LLMs show early promise on isolated checkpoints, they remain far from being able to reliably solve full research-scale challenges: the best average accuracy among base models is only 4.0% , achieved by GPT-5 (high), moderately rising to around 10% when equipped with coding tools. Through the realistic yet standardized evaluation offered by CritPt, we highlight a large disconnect between current model capabilities and realistic physics research demands, offering a foundation to guide the development of scientifically grounded AI tools.',\n",
" 'summary_detail': {'type': 'text/html',\n",
" 'language': None,\n",
" 'base': 'https://rss.arxiv.org/rss/quant-ph',\n",
" 'value': 'arXiv:2509.26574v2 Announce Type: replace-cross \\nAbstract: While large language models (LLMs) with reasoning capabilities are progressing rapidly on high-school math competitions and coding, can they reason effectively through complex, open-ended challenges found in frontier physics research? And crucially, what kinds of reasoning tasks do physicists want LLMs to assist with? To address these questions, we present the CritPt (Complex Research using Integrated Thinking - Physics Test, pronounced \"critical point\"), the first benchmark designed to test LLMs on unpublished, research-level reasoning tasks that broadly covers modern physics research areas, including condensed matter, quantum physics, atomic, molecular & optical physics, astrophysics, high energy physics, mathematical physics, statistical physics, nuclear physics, nonlinear dynamics, fluid dynamics and biophysics. CritPt consists of 71 composite research challenges designed to simulate full-scale research projects at the entry level, which are also decomposed to 190 simpler checkpoint tasks for more fine-grained insights. All problems are newly created by 50+ active physics researchers based on their own research. Every problem is hand-curated to admit a guess-resistant and machine-verifiable answer and is evaluated by an automated grading pipeline heavily customized for advanced physics-specific output formats. We find that while current state-of-the-art LLMs show early promise on isolated checkpoints, they remain far from being able to reliably solve full research-scale challenges: the best average accuracy among base models is only 4.0% , achieved by GPT-5 (high), moderately rising to around 10% when equipped with coding tools. Through the realistic yet standardized evaluation offered by CritPt, we highlight a large disconnect between current model capabilities and realistic physics research demands, offering a foundation to guide the development of scientifically grounded AI tools.'},\n",
" 'id': 'oai:arXiv.org:2509.26574v2',\n",
" 'guidislink': False,\n",
" 'tags': [{'term': 'cs.AI', 'scheme': None, 'label': None},\n",
" {'term': 'cond-mat.other', 'scheme': None, 'label': None},\n",
" {'term': 'cs.CL', 'scheme': None, 'label': None},\n",
" {'term': 'hep-th', 'scheme': None, 'label': None},\n",
" {'term': 'quant-ph', 'scheme': None, 'label': None}],\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400',\n",
" 'published_parsed': time.struct_time(tm_year=2025, tm_mon=10, tm_mday=2, tm_hour=4, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=275, tm_isdst=0),\n",
" 'arxiv_announce_type': 'replace-cross',\n",
" 'rights': 'http://arxiv.org/licenses/nonexclusive-distrib/1.0/',\n",
" 'rights_detail': {'type': 'text/plain',\n",
" 'language': None,\n",
" 'base': 'https://rss.arxiv.org/rss/quant-ph',\n",
" 'value': 'http://arxiv.org/licenses/nonexclusive-distrib/1.0/'},\n",
" 'authors': [{'name': 'Minhui Zhu, Minyang Tian, Xiaocheng Yang, Tianci Zhou, Penghao Zhu, Eli Chertkov, Shengyan Liu, Yufeng Du, Lifan Yuan, Ziming Ji, Indranil Das, Junyi Cao, Yufeng Du, Jinchen He, Yifan Su, Jiabin Yu, Yikun Jiang, Yujie Zhang, Chang Liu, Ze-Min Huang, Weizhen Jia, Xinan Chen, Peixue Wu, Yunkai Wang, Juntai Zhou, Yong Zhao, Farshid Jafarpour, Jessie Shelton, Aaron Young, John Bartolotta, Wenchao Xu, Yue Sun, Anjun Chu, Victor Colussi, Chris Akers, Nathan Brooks, Wenbo Fu, Christopher Wilson, Jinchao Zhao, Marvin Qi, Anqi Mu, Yubo Yang, Allen Zang, Yang Lyu, Peizhi Mai, Xuefei Guo, Luyu Gao, Ze Yang, Chi Xue, Dmytro Bandak, Ya\\\\\"ir Hein, Yonatan Kahn, Kevin Zhou, John Drew Wilson, Jarrod T. Reilly, Di Luo, Daniel Inafuku, Hao Tong, Liang Yang, Ruixing Zhang, Xueying Wang, Ofir Press, Nicolas Chia, Eliu Huerta, Hao Peng'}],\n",
" 'author': 'Minhui Zhu, Minyang Tian, Xiaocheng Yang, Tianci Zhou, Penghao Zhu, Eli Chertkov, Shengyan Liu, Yufeng Du, Lifan Yuan, Ziming Ji, Indranil Das, Junyi Cao, Yufeng Du, Jinchen He, Yifan Su, Jiabin Yu, Yikun Jiang, Yujie Zhang, Chang Liu, Ze-Min Huang, Weizhen Jia, Xinan Chen, Peixue Wu, Yunkai Wang, Juntai Zhou, Yong Zhao, Farshid Jafarpour, Jessie Shelton, Aaron Young, John Bartolotta, Wenchao Xu, Yue Sun, Anjun Chu, Victor Colussi, Chris Akers, Nathan Brooks, Wenbo Fu, Christopher Wilson, Jinchao Zhao, Marvin Qi, Anqi Mu, Yubo Yang, Allen Zang, Yang Lyu, Peizhi Mai, Xuefei Guo, Luyu Gao, Ze Yang, Chi Xue, Dmytro Bandak, Ya\\\\\"ir Hein, Yonatan Kahn, Kevin Zhou, John Drew Wilson, Jarrod T. Reilly, Di Luo, Daniel Inafuku, Hao Tong, Liang Yang, Ruixing Zhang, Xueying Wang, Ofir Press, Nicolas Chia, Eliu Huerta, Hao Peng',\n",
" 'author_detail': {'name': 'Minhui Zhu, Minyang Tian, Xiaocheng Yang, Tianci Zhou, Penghao Zhu, Eli Chertkov, Shengyan Liu, Yufeng Du, Lifan Yuan, Ziming Ji, Indranil Das, Junyi Cao, Yufeng Du, Jinchen He, Yifan Su, Jiabin Yu, Yikun Jiang, Yujie Zhang, Chang Liu, Ze-Min Huang, Weizhen Jia, Xinan Chen, Peixue Wu, Yunkai Wang, Juntai Zhou, Yong Zhao, Farshid Jafarpour, Jessie Shelton, Aaron Young, John Bartolotta, Wenchao Xu, Yue Sun, Anjun Chu, Victor Colussi, Chris Akers, Nathan Brooks, Wenbo Fu, Christopher Wilson, Jinchao Zhao, Marvin Qi, Anqi Mu, Yubo Yang, Allen Zang, Yang Lyu, Peizhi Mai, Xuefei Guo, Luyu Gao, Ze Yang, Chi Xue, Dmytro Bandak, Ya\\\\\"ir Hein, Yonatan Kahn, Kevin Zhou, John Drew Wilson, Jarrod T. Reilly, Di Luo, Daniel Inafuku, Hao Tong, Liang Yang, Ruixing Zhang, Xueying Wang, Ofir Press, Nicolas Chia, Eliu Huerta, Hao Peng'}}"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import feedparser\n",
"feed = feedparser.parse(\"https://rss.arxiv.org/rss/quant-ph\")\n",
"\n",
"feed.entries[-1]"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "599f6788",
"metadata": {},
"outputs": [],
"source": [
"def fetch_current_arxiv_postings_rss(category: str) -> list:\n",
" \"\"\"\n",
" Returns all of today's brand-new arXiv submissions in a category via RSS.\n",
" \"\"\"\n",
" import feedparser\n",
"\n",
" url = f\"https://rss.arxiv.org/rss/{category}\"\n",
" feed = feedparser.parse(url)\n",
"\n",
" results = []\n",
" for e in feed.entries:\n",
" announce_type = getattr(e, \"arxiv_announce_type\", None)\n",
" if \"replace\" in announce_type.lower():\n",
" continue # skip replaced articles but keeps new cross-lists\n",
"\n",
" results.append({\n",
" \"title\": e.title,\n",
" \"authors\": e.get(\"authors\", []),\n",
" \"summary\": e.summary,\n",
" \"url\": e.link,\n",
" \"published\": str(e.published) if hasattr(e, \"published\") else None,\n",
" })\n",
"\n",
" return results"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "c6f198b4",
"metadata": {},
"outputs": [],
"source": [
"papers_today = fetch_current_arxiv_postings_rss(\"quant-ph\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "33f4761d",
"metadata": {},
"outputs": [],
"source": [
"import os, json, re, html\n",
"from google import genai\n",
"from google.genai import types\n",
"\n",
"def clean(text: str) -> str:\n",
" return re.sub(r\"<[^>]+>\", \"\", html.unescape(text or \"\")).strip()\n",
"\n",
"def filter_papers_with_gemini(papers, research_focus: str):\n",
" \"\"\"\n",
" Takes output of fetch_current_arxiv_postings_rss and returns\n",
" a list of dicts: [{title, url, reason}]\n",
" \"\"\"\n",
" blocks = []\n",
" for p in papers:\n",
" # Normalize authors (feedparser often gives dicts with 'name')\n",
" authors = []\n",
" for a in p.get(\"authors\", []):\n",
" if isinstance(a, dict) and \"name\" in a:\n",
" authors.append(a[\"name\"])\n",
" elif hasattr(a, \"name\"): # feedparser Author object\n",
" authors.append(a.name)\n",
" else:\n",
" authors.append(str(a))\n",
"\n",
" title = p.get(\"title\", \"\").strip()\n",
" abstract = clean(p.get(\"summary\", \"\"))\n",
" url = p.get(\"url\", \"\")\n",
"\n",
" blocks.append(\n",
" f\"Title: {title}\\n\"\n",
" f\"Authors: {', '.join(authors)}\\n\"\n",
" f\"Abstract: {abstract}\\n\"\n",
" f\"URL: {url}\\n\"\n",
" \"----\"\n",
" )\n",
" bundle = \"\\n\".join(blocks)\n",
"\n",
" client = genai.Client(api_key=os.environ[\"GEMINI_API_KEY\"])\n",
"\n",
" user_prompt = f\"\"\"\n",
" Research areas to look for:\n",
" {research_focus}\n",
"\n",
" Here are today's arXiv papers (each separated by ----):\n",
" {bundle}\n",
"\n",
" Select only the relevant papers and return them as a JSON array. \n",
" For selecting relevant papers, make sure it would be of interest for\n",
" a research lab that works on circuit QED and experimental quantum computing \n",
" (physics and engineering) with superconducting qubits. Err on the side of \n",
" exclusion, i.e., return only the most 3-4 relevant papers. Only if there \n",
" are more that are EXTREMELY relevant should you include more.\n",
"\n",
" Each returned object must have: title (str), url (str), reason (str).\n",
" \"\"\"\n",
"\n",
" response = client.models.generate_content(\n",
" model=\"gemini-2.5-flash\", # fast + free tier friendly\n",
" contents=user_prompt,\n",
" config=types.GenerateContentConfig(\n",
" temperature=0,\n",
" response_mime_type=\"application/json\", # force valid JSON\n",
" ),\n",
" )\n",
"\n",
" return json.loads(response.text)\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 21,
"id": "71334021",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[{'title': 'Passive detection of Schwinger boson dynamics via a qubit',\n",
" 'url': 'https://arxiv.org/abs/2510.00108',\n",
" 'reason': \"This paper is highly relevant as it proposes an integrated photonic device where a transmon qubit capacitively couples to a microwave cross-resonator, explicitly mentioning 'superconducting circuits' and 'transmon qubit' for quantum sensing. This directly aligns with experimental physics and engineering of superconducting qubits.\"},\n",
" {'title': 'Exploiting Translational Symmetry for Quantum Computing with Squeezed Cat Qubits',\n",
" 'url': 'https://arxiv.org/abs/2510.00497',\n",
" 'reason': \"This work focuses on 'squeezed cat quantum error correction (QEC) codes' and their implementation for logical operations. Cat qubits are a type of bosonic qubit frequently realized in superconducting circuits, making this paper directly relevant to the physics and engineering of advanced superconducting qubit architectures.\"},\n",
" {'title': 'Pre-Distillation of Magic States via Composite Schemes',\n",
" 'url': 'https://arxiv.org/abs/2510.00804',\n",
" 'reason': \"This paper addresses 'Magic state distillation (MSD)' for fault-tolerant quantum computing and explicitly develops 'composite sequences tailored to the dominant control imperfections in superconducting' platforms. This is crucial for the engineering and performance improvement of superconducting quantum computers.\"},\n",
" {'title': 'Combining Error Detection and Mitigation: A Hybrid Protocol for Near-Term Quantum Simulation',\n",
" 'url': 'https://arxiv.org/abs/2510.01181',\n",
" 'reason': \"This paper is extremely relevant as it demonstrates a hybrid error suppression protocol on a 'non-Clifford variational quantum eigensolver circuit' using the 'IBM quantum processor ibm_brussels,' which is a superconducting quantum computer. This directly addresses practical experimental challenges and solutions for near-term superconducting hardware.\"},\n",
" {'title': 'An InAsSb surface quantum well with in-situ deposited Nb as a platform for semiconductor-superconductor hybrid devices',\n",
" 'url': 'https://arxiv.org/abs/2510.00711',\n",
" 'reason': \"This paper describes a novel material platform for 'semiconductor-superconductor hybrid devices' and discusses 'gate-tunable superconductivity and topological superconducting devices.' This is highly relevant to the engineering and materials science aspects of developing next-generation superconducting qubits and related quantum hardware.\"}]"
]
},
"execution_count": 21,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"filter_papers_with_gemini(papers_today, \"superconducting qubits\")"
]
},
{
"cell_type": "code",
"execution_count": 11,
"id": "917233a6",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[{'title': 'Evaluating noises of boson sampling with statistical benchmark methods',\n",
" 'authors': [{'name': 'Yang Ji, Yongjin Ye, Qiao Wang, Shi Wang, Jie Hou, Yongzheng Wu, Zijian Wang, Bo Jiang'}],\n",
" 'summary': 'arXiv:2510.00056v1 Announce Type: new \\nAbstract: The lack of self-correcting codes hiders the development of boson sampling to be large-scale and robust. Therefore, it is important to know the noise levels in order to cautiously demonstrate the quantum computational advantage or realize certain tasks. Based on those statistical benchmark methods such as the correlators and the clouds, which are initially proposed to discriminate boson sampling and other mockups, we quantificationally evaluate noises of photon partial distinguishability and photon loss compensated by dark counts. This is feasible owing to the fact that the output distribution unbalances are suppressed by noises, which are actually results of multi-photon interferences. This is why the evaluation performance is better when high order correlators or corresponding clouds are employed. Our results indicate that the statistical benchmark methods can also work in the task of evaluating noises of boson sampling.',\n",
" 'url': 'https://arxiv.org/abs/2510.00056',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Operator algebra of the information-disturbance tradeoff in quantum measurements',\n",
" 'authors': [{'name': 'Hollis Williams, Holger F. Hofmann'}],\n",
" 'summary': 'arXiv:2510.00064v1 Announce Type: new \\nAbstract: Quantum measurements can be described by operators that assign conditional probabilities to different outcomes while also describing unavoidable physical changes to the system. Here, we point out that operators describing information gain at minimal disturbance can be expanded into a set of unitary operators representing experimentally distinguishable patterns of disturbance. The observable statistics of disturbance defines a tight upper bound on the information gain of the measurement.',\n",
" 'url': 'https://arxiv.org/abs/2510.00064',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Passive detection of Schwinger boson dynamics via a qubit',\n",
" 'authors': [{'name': 'Ioannis Petrides, Arpit Arora, Prineha Narang'}],\n",
" 'summary': 'arXiv:2510.00108v1 Announce Type: new \\nAbstract: The quantum sensing landscape has been revolutionized by advanced technologies like superconducting circuits and qubit-based systems which have furthered the ability to probe and understand fundamental properties of quantum matter. Here, we propose an integrated photonic device where a transmon qubit capacitively couples to a microwave cross-resonator, and the setup is employed for sensing of time reversal broken order in materials. In this sensing scheme, the transmon qubit plays a dual role as both a control element and a passive detector, while the photonic cross-resonator serves as the host for the sample, enabling a contact-free spectroscopic method suitable for studying materials where reliable electrical contacts are challenging to obtain, e.g., in van der Waal 2D heterostructures. We show that by tuning the coupling strength and phase between the transmon and the cross-resonator, the system allows selective control over the interaction dynamics and leads to a highly sensitive detection method that can be compactly understood in terms of evolution of excited state population and quantum metric of the resonator-transmon hybrid state. This architecture has the potential to host a wide range of quantum phenomena that can be precisely encoded in the dynamics of the transmon qubit and, in this way, potentially allows access to elusive aspects of correlated materials.',\n",
" 'url': 'https://arxiv.org/abs/2510.00108',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Complexity and hardness of random peaked circuits',\n",
" 'authors': [{'name': 'Yuxuan Zhang'}],\n",
" 'summary': \"arXiv:2510.00132v1 Announce Type: new \\nAbstract: Near-term feasibility, classical hardness, and verifiability are the three requirements for demonstrating quantum advantage; most existing quantum advantage proposals achieve at most two. A promising candidate recently proposed is through randomly generated peaked circuits. In this work, we study an explicit construction for random peaked circuits: first selecting a random circuit $C$ of polynomial size, which forms a $k$-design. Subsequently, a second random circuit $C'$ is chosen from the same architecture, subject to a postselection criterion: $C'$ must exhibit a high overlap with $C$ in one of their rows. Utilizing unitary design properties, we demonstrate that the circuits generated by this method are non-trivial; specifically, $C'$ is provably far from $C^\\\\dagger$. Indeed, with overwhelmingly high probability, a random peaked circuit generated this way is non-compressible and is of circuit complexity $\\\\tilde \\\\Omega(nk)$. This resolves an open problem posed by Aaronson in 2022. Secondly, we analytically establish that estimating the peakedness of a random peaked circuit to within a $2^{-\\\\text{poly}(n)}$ additive error, is average-case \\\\#P-hard. When the additive error is relaxed to $1/\\\\text{poly}(n)$, we note that the worst-case scenario for this problem is BQP-complete. Under widely accepted assumptions on random quantum circuits, we identify a regime where no classical polynomial-time sequential simulator attains inverse-polynomial additive accuracy on the peak on a non-negligible fraction of instances. Thirdly, we study using peaked circuits as a practical attempt for a verifiable quantum advantage protocol. While the postselection method for generating peaked circuits could be costly, we demonstrate that numerical search for $C'$ with randomized initialization successfully returns a random peaked circuit, achieving the properties as theoretically predicted.\",\n",
" 'url': 'https://arxiv.org/abs/2510.00132',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Approximate Quantum State Preparation with Tree-Based Bayesian Optimization Surrogates',\n",
" 'authors': [{'name': 'Nicholas S. DiBrita, Jason Han, Younghyun Cho, Hengrui Luo, Tirthak Patel'}],\n",
" 'summary': 'arXiv:2510.00145v1 Announce Type: new \\nAbstract: We study the problem of approximate state preparation on near-term quantum computers, where the goal is to construct a parameterized circuit that reproduces the output distribution of a target quantum state while minimizing resource overhead. This task is especially relevant for near-term algorithms where distributional matching suffices, but it is challenging due to stochastic outputs, limited circuit depth, and a high-dimensional, non-smooth parameter space. We propose CircuitTree, a surrogate-guided optimization framework based on Bayesian Optimization with tree-based models, which avoids the scalability and smoothness assumptions of Gaussian Process surrogates. Our framework introduces a structured layerwise decomposition strategy that partitions parameters into blocks aligned with variational circuit architecture, enabling distributed and sample-efficient optimization with theoretical convergence guarantees. Empirical evaluations on synthetic benchmarks and variational tasks validate our theoretical insights, showing that CircuitTree achieves low total variation distance and high fidelity while requiring significantly shallower circuits than existing approaches.',\n",
" 'url': 'https://arxiv.org/abs/2510.00145',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'The non-stabilizerness cost of quantum state estimation',\n",
" 'authors': [{'name': 'Gabriele Lo Monaco, Salvatore Lorenzo, Luca Innocenti, Alessandro Ferraro, Mauro Paternostro, G. Massimo Palma'}],\n",
" 'summary': 'arXiv:2510.00157v1 Announce Type: new \\nAbstract: We study the non-stabilizer resources required to achieve informational completeness in single-setting quantum state estimation scenarios. We consider fixed-basis projective measurements preceded by quantum circuits acting on $n$-qubit input states, allowing ancillary qubits to increase retrievable information. We prove that when only stabilizer resources are allowed, these strategies are always informationally equivalent to projective measurements in a stabilizer basis, and therefore never informationally complete, regardless of the number of ancillas. We then show that incorporating $T$ gates enlarges the accessible information. Specifically, we prove that at least ${2n}/{\\\\log_2 3}$ such gates are necessary for informational completeness, and that $2n$ suffice. We conjecture that $2n$ gates are indeed both necessary and sufficient. Finally, we unveil a tight connection between entanglement structure and informational power of measurements implemented with $t$-doped Clifford circuits. Our results recast notions of \"magic\" and stabilizerness - typically framed in computational terms - into the setting of quantum metrology.',\n",
" 'url': 'https://arxiv.org/abs/2510.00157',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Query-Optimal Estimation of Unitary Channels via Pauli Dimensionality',\n",
" 'authors': [{'name': 'Sabee Grewal, Daniel Liang'}],\n",
" 'summary': 'arXiv:2510.00168v1 Announce Type: new \\nAbstract: We study process tomography of unitary channels whose Pauli spectrum is supported on a small subgroup. Given query access to an unknown unitary channel whose Pauli spectrum is supported on a subgroup of size $2^k$, our goal is to output a classical description that is $\\\\epsilon$-close to the unknown unitary in diamond distance. We present an algorithm that achieves this using $O(2^k/\\\\epsilon)$ queries, and we prove matching lower bounds, establishing query optimality of our algorithm. When $k = 2n$, so that the support is the full Pauli group, our result recovers the query-optimal $O(4^n/\\\\epsilon)$-query algorithm of Haah, Kothari, O\\'Donnell, and Tang [FOCS \\'23].\\n Our result has two notable consequences. First, we give a query-optimal $O(4^k/\\\\epsilon)$-query algorithm for learning quantum $k$-juntas -- unitary channels that act non-trivially on only $k$ of the $n$ qubits -- to accuracy $\\\\epsilon$ in diamond distance. This represents an exponential improvement in both query and time complexity over prior work.\\n Second, we give a computationally efficient algorithm for learning compositions of depth-$O(\\\\log \\\\log n)$ circuits with near-Clifford circuits, where \"near-Clifford\" means a Clifford circuit augmented with at most $O(\\\\log n)$ non-Clifford single-qubit gates. This unifies prior work, which could handle only constant-depth circuits or near-Clifford circuits, but not their composition.',\n",
" 'url': 'https://arxiv.org/abs/2510.00168',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Quantum reservoir computing using Jaynes-Cummings model',\n",
" 'authors': [{'name': 'Sreetama Das, Gian Luca Giorgi, Roberta Zambrini'}],\n",
" 'summary': 'arXiv:2510.00171v1 Announce Type: new \\nAbstract: We investigate quantum reservoir computing (QRC) using a hybrid qubit-boson system described by the Jaynes-Cummings (JC) Hamiltonian and its dispersive limit (DJC). These models provide high-dimensional Hilbert spaces and intrinsic nonlinear dynamics, making them powerful substrates for temporal information processing. We systematically benchmark both reservoirs through linear and nonlinear memory tasks, demonstrating that they exhibit an unusual superior nonlinear over linear memory capacity. We further test their predictive performance on the Mackey-Glass time series, a widely used benchmark for chaotic dynamics and show comparable forecasting ability. We also investigate how memory and prediction accuracy vary with reservoir parameters, and show the role of higher-order bosonic observables and time multiplexing in enhancing expressivity, even in minimal spin-boson configurations. Our results establish JC- and DJC-based reservoirs as versatile platforms for time-series processing and as elementary units that overcome the setting of equivalent qubit pairs and offer pathways towards tunable, high-performance quantum machine learning architectures.',\n",
" 'url': 'https://arxiv.org/abs/2510.00171',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Practical Quantum Clock Synchronization Using Weak Coherent Pulses',\n",
" 'authors': [{'name': 'Noah Crum, Md Mehdi Hassan, George Siopsis'}],\n",
" 'summary': 'arXiv:2510.00199v1 Announce Type: new \\nAbstract: Establishing and maintaining a common time reference across spatially separated devices is a prerequisite for networked quantum experiments and secure communications. Classical two-way timing protocols such as Network Time Protocol (NTP) or Precision Time Protocol (PTP) are vulnerable to asymmetric channel delays and cannot provide the picosecond-level precision demanded by quantum repeater networks. We propose and numerically evaluate a quantum-enhanced clock synchronization protocol based on attenuated weak coherent pulses (WCPs) and bidirectional Hong--Ou--Mandel (HOM) interferometry. Our simulations assume telecom-band photons ($1550\\\\,\\\\mathrm{nm}$) with a temporal width of $10.0\\\\,\\\\mathrm{ns}$, a repetition rate of $f = 10\\\\,\\\\mathrm{MHz}$, effective mean photon number $\\\\mu = 1.0$, detector efficiency $\\\\eta = 85\\\\%$, detector timing jitter of $150\\\\,\\\\mathrm{ps}$, and channel loss of $0.2\\\\,\\\\mathrm{dB/km}$. We simulate that sub-nanosecond clock-offset accuracy and precision can be achieved under these operating conditions. This work demonstrates that high-repetition-rate WCPs combined with HOM interference can provide flexible and secure quantum clock synchronization at sub-nanosecond precision.',\n",
" 'url': 'https://arxiv.org/abs/2510.00199',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'A Review of Software for Designing and Operating Quantum Networks',\n",
" 'authors': [{'name': 'Robert J. Hayek, Joaquin Chung, Rajkumar Kettimuthu'}],\n",
" 'summary': 'arXiv:2510.00203v1 Announce Type: new \\nAbstract: Quantum network protocol development is crucial to realizing a production-grade network that can support distributed sensing, secure communication, and utility-scale quantum computation. However, the transition from laboratory demonstration to deployable networks requires software implementations of architectures and protocols tailored to the unique constraints of quantum systems. This paper reviews the current state of software implementations for quantum networks, organized around the three-plane abstraction of infrastructure, logical, and control/service planes. We cover software for both designing quantum network protocols (e.g., SeQUeNCe, QuISP, and NetSquid) and operating them, with a focus on essential control/service plane functions such as entanglement, topology, and resource management, in a proposed taxonomy. Our review highlights a persistent gap between theoretical protocol proposals and their realization in simulators or testbeds, particularly in dynamic topology and network management. We conclude by outlining open challenges and proposing a roadmap for developing scalable software architectures to enable hybrid, large-scale quantum networks.',\n",
" 'url': 'https://arxiv.org/abs/2510.00203',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'SPAM Tolerance for Pauli Error Estimation',\n",
" 'authors': [{'name': \"Ryan O'Donnell, Samvitti Sharma\"}],\n",
" 'summary': 'arXiv:2510.00230v1 Announce Type: new \\nAbstract: The Pauli channel is a fundamental model of noise in quantum systems, motivating the task of Pauli error estimation. We present an algorithm that builds on the reduction to Population Recovery introduced in [FO21]. Addressing an open question from that work, our algorithm has the key advantage of robustness against even severe state preparation and measurement (SPAM) errors. To tolerate SPAM, we must analyze Population Recovery on a combined erasure/bit-flip channel, which necessitates extending the complex analysis techniques from [PSW17, DOS17]. For $n$-qubit channels, our Pauli error estimation algorithm requires only $\\\\exp(n^{1/3})$ unentangled state preparations and measurements, improving on previous SPAM-tolerant algorithms that had $2^n$-dependence even for restricted families of Pauli channels. We also give evidence that no SPAM-tolerant method can make asymptotically fewer than $\\\\exp(n^{1/3})$ uses of the channel.',\n",
" 'url': 'https://arxiv.org/abs/2510.00230',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Double-Bracket Algorithmic Cooling',\n",
" 'authors': [{'name': 'Mohammed Alghadeer, Khanh Uyen Giang, Shuxiang Cao, Simone D. Fasciati, Michele Piscitelli, Nelly Ng, Peter J. Leek, Marek Gluza, Mustafa Bakr'}],\n",
" 'summary': 'arXiv:2510.00302v1 Announce Type: new \\nAbstract: Algorithmic cooling shows that it is possible to locally reduce the entropy of a qubit belonging to an isolated ensemble such as nuclear spins in molecules or nitrogen-vacancy centers in diamonds. In the same physical setting, we introduce double-bracket algorithmic cooling (DBAC), a protocol that systematically suppresses quantum coherence of pure states. DBAC achieves this by simulating quantum imaginary-time evolution through recursive unitary synthesis of Riemannian steepest-descent flows and it utilizes density-matrix exponentiation as a subroutine. This subroutine makes DBAC a concrete instance of a dynamic quantum algorithm that operates using quantum information stored in copies of the input states. Thus, the circuits of DBAC are independent of the input state, enabling the extension of algorithmic cooling from targeting entropy to quantum coherence without resorting to measurements. Akin to Nernst principle, DBAC increases the cooling performance when including more input qubits which serve as quantum instructions. Our work demonstrates that dynamic quantum algorithms are a promising route toward new protocols for foundational tasks in quantum thermodynamics.',\n",
" 'url': 'https://arxiv.org/abs/2510.00302',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'QSearchNet: A Quantum Walk Search Framework for Link Prediction',\n",
" 'authors': [{'name': 'Priyank Dubey'}],\n",
" 'summary': \"arXiv:2510.00325v1 Announce Type: new \\nAbstract: Link prediction is one of the fundamental problems in graph theory, critical for understanding and forecasting the evolution of complex systems like social and biological networks. While classical heuristics capture certain aspects of graph topology, they often struggle to optimally integrate local and global structural information or adapt to complex dependencies. Quantum computing offers a powerful alternative by leveraging superposition for simultaneous multi-path exploration and interference-driven integration of both local and global graph features. In this work, we introduce QSearchNet, a quantum-inspired framework based on Discrete-Time Quantum Walk (DTQW) dynamics and Grover's amplitude amplification. QSearchNet simulates a topology-aware quantum evolution to propagate amplitudes across multiple nodes simultaneously. By aligning interference patterns through quantum reflection and oracle-like phase-flip operation, it adaptively prioritizes multi-hop dependencies and amplifies structurally relevant paths corresponding to potential connections. Experiments on diverse real-world networks demonstrate competitive performance, particularly with hard negative samples under realistic evaluation conditions.\",\n",
" 'url': 'https://arxiv.org/abs/2510.00325',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Low Depth Color Code Circuits with CXSWAP gate',\n",
" 'authors': [{'name': 'Satoshi Yoshida, Craig Gidney, Matt McEwen, Adam Zalcman'}],\n",
" 'summary': 'arXiv:2510.00370v1 Announce Type: new \\nAbstract: We present two new types of syndrome extraction circuits for the color code. Our first construction, which after [M. McEwen, D. Bacon, and C. Gidney, Quantum 7, 1172 (2023)] we call the semi-wiggling color code, promises to mitigate leakage errors by periodically interchanging the roles of bulk data and measurement qubits. The second construction reduces circuit depth relative to [C. Gidney and C. Jones, arXiv:2312.08813 (2023)] by employing the CXSWAP gate instead of CNOT. This optimization leads to $\\\\sim 10\\\\%$ improvement in teraquop footprint under the uniform error model with the physical error rate $p=0.1\\\\%$.',\n",
" 'url': 'https://arxiv.org/abs/2510.00370',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Mathematical and numerical analysis of quantum signal processing',\n",
" 'authors': [{'name': 'Lin Lin'}],\n",
" 'summary': 'arXiv:2510.00443v1 Announce Type: new \\nAbstract: Quantum signal processing (QSP) provides a representation of scalar polynomials of degree $d$ as products of matrices in $\\\\mathrm{SU}(2)$, parameterized by $(d+1)$ real numbers known as phase factors. QSP is the mathematical foundation of quantum singular value transformation (QSVT), which is often regarded as one of the most important quantum algorithms of the past decade, with a wide range of applications in scientific computing, from Hamiltonian simulation to solving linear systems of equations and eigenvalue problems. In this article we survey recent advances in the mathematical and numerical analysis of QSP. In particular, we focus on its generalization beyond polynomials, the computational complexity of algorithms for phase factor evaluation, and the numerical stability of such algorithms. The resolution to some of these problems relies on an unexpected interplay between QSP, nonlinear Fourier analysis on $\\\\mathrm{SU}(2)$, fast polynomial multiplications, and Gaussian elimination for matrices with displacement structure.',\n",
" 'url': 'https://arxiv.org/abs/2510.00443',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Exploiting Translational Symmetry for Quantum Computing with Squeezed Cat Qubits',\n",
" 'authors': [{'name': 'Tomohiro Shitara, Gabriel Mintzer, Yuuki Tokunaga, Suguru Endo'}],\n",
" 'summary': 'arXiv:2510.00497v1 Announce Type: new \\nAbstract: Squeezed cat quantum error correction (QEC) codes have garnered attention because of their robustness against photon-loss and excitation errors while maintaining the biased-noise property of cat codes. In this work, we reveal the utility of the unexplored translational symmetry of the squeezed cat codes, with applications to autonomous QEC, reliable logical operations, and readout in a non-orthogonal basis. Using the basis under subsystem decomposition spanned by squeezed displaced Fock states, we analytically show that our autonomous QEC protocol allows for correcting logical errors due to photon loss, although the translational symmetry in one direction does not uniquely specify the code space. We also introduce the implementation methods of reliable logical operations by repeated alternation of a small-step unitary operation with a subsequent step of QEC onto the code space. Finally, by appropriately treating the non-Hermitian nature of the logical $Z$ operator, we also propose a circuit for precisely reading out the squeezed cat code in a non-orthogonal basis.',\n",
" 'url': 'https://arxiv.org/abs/2510.00497',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Quantum Probabilistic Label Refining: Enhancing Label Quality for Robust Image Classification',\n",
" 'authors': [{'name': 'Fang Qi, Lu Peng, Zhengming Ding'}],\n",
" 'summary': 'arXiv:2510.00528v1 Announce Type: new \\nAbstract: Learning with softmax cross-entropy on one-hot labels often leads to overconfident predictions and poor robustness under noise or perturbations. Label smoothing mitigates this by redistributing some confidence uniformly, but treats all samples equally, ignoring intra-class variability. We propose a hybrid quantum-classical framework that leverages quantum non-determinism to refine data labels into probabilistic ones, offering more nuanced, human-like uncertainty representations than label smoothing or Bayesian approaches. A variational quantum circuit (VQC) encodes inputs into multi-qubit quantum states, using entanglement and superposition to capture subtle feature correlations. Measurement via the Born rule extracts probabilistic soft labels that reflect input-specific uncertainty. These labels are then used to train a classical convolutional neural network (CNN) with soft-target cross-entropy loss. On MNIST and Fashion-MNIST, our method improves robustness, achieving up to 50% higher accuracy under noise while maintaining competitive accuracy on clean data. It also enhances model calibration and interpretability, as CNN outputs better reflect quantum-derived uncertainty. This work introduces Quantum Probabilistic Label Refining, bridging quantum measurement and classical deep learning for robust training via refined, correlation-aware labels without architectural changes or adversarial techniques.',\n",
" 'url': 'https://arxiv.org/abs/2510.00528',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Photonic Hybrid Quantum Computing',\n",
" 'authors': [{'name': 'Jaehak Lee, Srikrishna Omkar, Yong Siah Teo, Seok-Hyung Lee, Hyukjoon Kwon, M. S. Kim, Hyunseok Jeong'}],\n",
" 'summary': 'arXiv:2510.00534v1 Announce Type: new \\nAbstract: Photons are a ubiquitous carrier of quantum information: they are fast, suffer minimal decoherence, and do not require huge cryogenic facilities. Nevertheless, their intrinsically weak photon-photon interactions remain a key obstacle to scalable quantum computing. This review surveys hybrid photonic quantum computing, which exploits multiple photonic degrees of freedom to combine the complementary strengths of discrete and bosonic encodings, thereby significantly mitigating the challenge of weak photon-photon interactions. We first outline the basic principles of discrete-variable, native continuous-variable, and bosonic-encoding paradigms. We then summarise recent theoretical advances and state-of-the-art experimental demonstrations with particular emphasis on the hybrid approach. Its unique advantages, such as efficient generation of resource states and nearly ballistic (active-feedforward-free) operations, are highlighted alongside remaining technical challenges. To facilitate a clear comparison, we explicitly present the error thresholds and resource overheads required for fault-tolerant quantum computing. Our work offers a focused overview that clarifies how the hybrid approach enables scalable and compatible architectures for quantum computing.',\n",
" 'url': 'https://arxiv.org/abs/2510.00534',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Phase Transitions and Noise Robustness of Quantum Graph States',\n",
" 'authors': [{'name': 'Tatsuya Numajiri, Shion Yamashika, Tomonori Tanizawa, Ryosuke Yoshii, Yuki Takeuchi, Shunji Tsuchiya'}],\n",
" 'summary': 'arXiv:2510.00548v1 Announce Type: new \\nAbstract: Graph states are entangled states that are essential for quantum information processing, including measurement-based quantum computation. As experimental advances enable the realization of large-scale graph states, efficient fidelity estimation methods are crucial for assessing their robustness against noise. However, calculations of exact fidelity become intractable for large systems due to the exponential growth in the number of stabilizers. In this work, we show that the fidelity between any ideal graph state and its noisy counterpart under IID Pauli noise can be mapped to the partition function of a classical spin system, enabling efficient computation via statistical mechanical techniques, including transfer matrix methods and Monte Carlo simulations. Using this approach, we analyze the fidelity for regular graph states under depolarizing noise and uncover the emergence of phase transitions in fidelity between the pure-state regime and the noise-dominated regime governed by both the connectivity (degree) and spatial dimensionality of the graph state. Specifically, in 2D, phase transitions occur only when the degree satisfies $d\\\\ge 6$, while in 3D they already appear at $d\\\\ge 5$. However, for graph states with excessively high degree, such as fully connected graphs, the phase transition disappears, suggesting that extreme connectivity suppresses critical behavior. These findings reveal that robustness of graph states against noise is determined by their connectivity and spatial dimensionality. Graph states with lower degree and/or dimensionality, which exhibit a smooth crossover rather than a sharp transition, demonstrate greater robustness, while highly connected or higher-dimensional graph states are more fragile. Extreme connectivity, as the fully connected graph state possesses, restores robustness.',\n",
" 'url': 'https://arxiv.org/abs/2510.00548',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Linear-Size QAC0 Channels: Learning, Testing and Hardness',\n",
" 'authors': [{'name': 'Yangjing Dong, Fengning Ou, Penghui Yao'}],\n",
" 'summary': 'arXiv:2510.00593v1 Announce Type: new \\nAbstract: Shallow quantum circuits have attracted increasing attention in recent years, due to the fact that current noisy quantum hardware can only perform faithful quantum computation for a short amount of time. The constant-depth quantum circuits $\\\\mathbf{QAC}^0$, a quantum counterpart of $\\\\mathbf{AC}^0$ circuits, are the polynomial-size and constant-depth quantum circuits composed of only single-qubit unitaries and polynomial-size generalized Toffoli gates. The computational power of $\\\\mathbf{QAC}^0$ has been extensively investigated in recent years. In this paper, we are concerned with $\\\\mathbf{QLC}^0$ circuits, which are linear-size $\\\\mathbf{QAC}^0$ circuits, a quantum counterpart of $\\\\mathbf{LC}^0$.\\n * We show that depth-$d$ $\\\\mathbf{QAC}^0$ circuits working on $n$ input qubits and $a$ ancilla qubits have approximate degree at most $\\\\tilde{O}((n+a)^{1-2^{-d}})$, improving the $\\\\tilde{O}((n+a)^{1-3^{-d}})$ degree upper bound of previous works. Consequently, this directly implies that to compute the parity function, $\\\\mathbf{QAC}^0$ circuits need at least $\\\\tilde{O}(n^{1+2^{-d}})$ circuit size.\\n * We present the first agnostic learning algorithm for $\\\\mathbf{QLC}^0$ channels using subexponential running time and queries. Moreover, we also establish exponential lower bounds on the query complexity of learning $\\\\mathbf{QAC}^0$ channels under both the spectral norm distance of the Choi matrix and the diamond norm distance.\\n * We present a tolerant testing algorithm which determines whether an unknown quantum channel is a $\\\\mathbf{QLC}^0$ channel. This tolerant testing algorithm is based on our agnostic learning algorithm.\\n Our approach leverages low-degree approximations of $\\\\mathbf{QAC}^0$ circuits and Pauli analysis as key technical tools. Collectively, these results advance our understanding of agnostic learning for shallow quantum circuits.',\n",
" 'url': 'https://arxiv.org/abs/2510.00593',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'On the Relativity of Quantumness as Implied by Relativity of Arithmetic and Probability',\n",
" 'authors': [{'name': 'Marek Czachor'}],\n",
" 'summary': 'arXiv:2510.00637v1 Announce Type: new \\nAbstract: A hierarchical structure of isomorphic arithmetics is defined by a bijection $g_\\\\mathbb{R}:\\\\mathbb{R}\\\\to \\\\mathbb{R}$. It entails a hierarchy of probabilistic models, with probabilities $p_k=g^k(p)$, where $g$ is the restriction of $g_\\\\mathbb{R}$ to the interval $[0,1]$, $g^k$ is the $k$th iterate of $g$, and $k$ is an arbitrary integer (positive, negative, or zero; $g^0(x)=x$). The relation between $p$ and $g^k(p)$, $k>0$, is analogous to the one between probability and neural activation function. For \\\\mbox{$k\\\\ll -1$}, $g^k(p)$ is essentially white noise (all processes are equally probable). The choice of $k=0$ is physically as arbitrary as the choice of origin of a line in space, hence what we regard as experimental binary probabilities, $p_{\\\\rm exp}$, can be given by any $k$, $p_{\\\\rm exp}=g^k(p)$. Quantum binary probabilities are defined by $g(p)=\\\\sin^2\\\\frac{\\\\pi}{2}p$. With this concrete form of $g$, one finds that any two neighboring levels of the hierarchy are related to each other in a quantum--subquantum relation. In this sense, any model in the hierarchy is probabilistically quantum in appropriate arithmetic and calculus. And the other way around: any model is subquantum in appropriate arithmetic and calculus. Probabilities involving more than two events are constructed by means of trees of binary conditional probabilities. We discuss from this perspective singlet-state probabilities and Bell inequalities. We find that singlet state probabilities involve simultaneously three levels of the hierarchy: quantum, hidden, and macroscopic. As a by-product of the analysis, we discover a new (arithmetic) interpretation of the Fubini--Study geodesic distance.',\n",
" 'url': 'https://arxiv.org/abs/2510.00637',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Provably Optimal Quantum Circuits with Mixed-Integer Programming',\n",
" 'authors': [{'name': \"Harsha Nagarajan, Zsolt Szab\\\\'o\"}],\n",
" 'summary': \"arXiv:2510.00649v1 Announce Type: new \\nAbstract: We present a depth-aware optimization framework for quantum circuit compilation that unifies provable optimality with scalable heuristics. For exact synthesis of a target unitary, we formulate a mixed-integer linear program (MILP) that linearly handles global-phase equivalence and uses explicit parallel scheduling variables to certify depth-optimal solutions for small-to-medium circuits. Domain-specific valid constraints, including identity ordering, commuting-gate pruning, short-sequence redundancy cuts, and Hermitian-conjugate linkages, significantly accelerate branch-and-bound, yielding speedups up to 43x on standard benchmarks. The framework supports hardware-aware objectives, enabling fault-tolerant (e.g. T-count) and NISQ-era (e.g. entangling gates) devices. For approximate synthesis, we propose 3 objectives: (i) exact, but non-convex, phase-invariant fidelity maximization; (ii) a linear surrogate that maximizes the real trace overlap, yielding a tight lower bound to fidelity; and (iii) a convex quadratic function that minimizes the circuit's Frobenius error.\\n To scale beyond exact MILP, we propose a novel rolling-horizon optimization (RHO) that rolls primarily in time, caps the active-qubits, and enforces per-qubit closure while globally optimizing windowed segments. This preserves local context, reduces the Hilbert-space dimension, and enables iterative improvements without ancillas. On a 142-gate seed circuit, RHO yields 116 gates, an 18.3% reduction from the seed, while avoiding the trade-off between myopic passes and long run times. Empirically, our exact compilation framework achieves certified depth-optimal circuits on standard targets, high-fidelity Fibonacci-anyon weaves, and a 36% gate-count reduction on multi-body parity circuits. All methods are in the open-source QuantumCircuitOpt, providing a single framework that bridges exact certification and scalable synthesis.\",\n",
" 'url': 'https://arxiv.org/abs/2510.00649',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Practical considerations for assignment of photon numbers with SNSPDs',\n",
" 'authors': [{'name': 'Timon Schapeler, Isabell Mischke, Fabian Schlue, Michael Stefszky, Benjamin Brecht, Christine Silberhorn, Tim J. Bartley'}],\n",
" 'summary': \"arXiv:2510.00714v1 Announce Type: new \\nAbstract: Superconducting nanowire single-photon detectors (SNSPDs) can enable photon-number resolution (PNR) based on accurate measurements of the detector's response time to few-photon optical pulses. In this work we investigate the impact of the optical pulse shape and duration on the accuracy of this method. We find that Gaussian temporal pulse shapes yield cleaner arrival-time histograms, and thus more accurate PNR, compared to bandpass-filtered pulses of equal bandwidth. For low system jitter and an optical pulse duration comparable to the other jitter contributions, photon numbers can be discriminated in our system with a commercial SNSPD. At 60 ps optical pulse duration, photon-number discrimination is significantly reduced. Furthermore, we highlight the importance of using the correct arrival-time histogram model when analyzing photon-number assignment. Using exponentially-modified Gaussian (EMG) distributions, instead of the commonly used Gaussian distributions, we can more accurately determine photon-number misidentification probabilities. Finally, we reconstruct the positive operator-valued measures (POVMs) of the detector, revealing sharp features which indicate the intrinsic PNR capabilities.\",\n",
" 'url': 'https://arxiv.org/abs/2510.00714',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'On Estimating the Quantum Tsallis Relative Entropy',\n",
" 'authors': [{'name': 'Jinge Bao, Minbo Gao, Qisheng Wang'}],\n",
" 'summary': \"arXiv:2510.00752v1 Announce Type: new \\nAbstract: The relative entropy between quantum states quantifies their distinguishability. The estimation of certain relative entropies has been investigated in the literature, e.g., the von Neumann relative entropy and sandwiched R\\\\'enyi relative entropy. In this paper, we present a comprehensive study of the estimation of the quantum Tsallis relative entropy. We show that for any constant $\\\\alpha \\\\in (0, 1)$, the $\\\\alpha$-Tsallis relative entropy between two quantum states of rank $r$ can be estimated with sample complexity $\\\\operatorname{poly}(r)$, which can be made more efficient if we know their state-preparation circuits. As an application, we obtain an approach to tolerant quantum state certification with respect to the quantum Hellinger distance with sample complexity $\\\\widetilde{O}(r^{3.5})$, which exponentially outperforms the folklore approach based on quantum state tomography when $r$ is polynomial in the number of qubits. In addition, we show that the quantum state distinguishability problems with respect to the quantum $\\\\alpha$-Tsallis relative entropy and quantum Hellinger distance are $\\\\mathsf{QSZK}$-complete in a certain regime, and they are $\\\\mathsf{BQP}$-complete in the low-rank case.\",\n",
" 'url': 'https://arxiv.org/abs/2510.00752',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Computational Monogamy of Entanglement and Non-Interactive Quantum Key Distribution',\n",
" 'authors': [{'name': 'Alex B. Grilo, Giulio Malavolta, Michael Walter, Tianwei Zhang'}],\n",
" 'summary': 'arXiv:2510.00791v1 Announce Type: new \\nAbstract: Quantum key distribution (QKD) enables Alice and Bob to exchange a secret key over a public, untrusted quantum channel. Compared to classical key exchange, QKD achieves everlasting security: after the protocol execution the key is secure against adversaries that can do unbounded computations. On the flip side, while classical key exchange can be achieved non-interactively (with two simultaneous messages between Alice and Bob), no non-interactive protocol is known that provides everlasting security, even using quantum information.\\n In this work, we make progress on this problem. Our main technical contribution is a computational variant of the celebrated monogamy of entanglement game, where the secret is only computationally hidden from the players, rather than information-theoretically. In these settings, we prove a negligible bound on the maximal winning probability over all strategies. As a direct application, we obtain a non-interactive (simultaneous message) QKD protocol from any post-quantum classical non-interactive key exchange, which satisfies everlastingly secure assuming Alice and Bob agree on the same key. The protocol only uses EPR pairs and standard and Hadamard basis measurements, making it suitable for near-term quantum hardware. We also propose how to convert this protocol into a two-round protocol that satisfies the standard notion of everlasting security.\\n Finally, we prove a no-go theorem which establishes that (in contrast to the case of ordinary multi-round QKD) entanglement is necessary for non-interactive QKD, i.e., the messages sent by Alice and Bob cannot both be unentangled with their respective quantum memories if the protocol is to be everlastingly secure.',\n",
" 'url': 'https://arxiv.org/abs/2510.00791',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Pre-Distillation of Magic States via Composite Schemes',\n",
" 'authors': [{'name': 'Muhammad Erew, Moshe Goldstein, Yaron Oz, Haim Suchowski'}],\n",
" 'summary': \"arXiv:2510.00804v1 Announce Type: new \\nAbstract: Magic state distillation (MSD) is a cornerstone of fault-tolerant quantum computing, enabling non-Clifford gates via state injection into stabilizer circuits. However, the substantial overhead of current MSD protocols remains a major obstacle to scalable implementations. We propose a general framework for pre-distillation, based on composite pulse sequences that suppress systematic errors in the generation of magic states. Unlike typical composite designs that target simple gates such as $X$, $Z$, or Hadamard, our schemes directly implement the non-Clifford $\\\\mathcal{T}$ gate with enhanced robustness. We develop composite sequences tailored to the dominant control imperfections in superconducting, trapped-ion, neutral-atom, and integrated photonic platforms. To quantify improvement in the implementation, we introduce an operationally motivated fidelity measure specifically tailored to the $\\\\mathcal{T}$ gate: the T-magic error, which captures the gate's effectiveness in preparing high-fidelity magic states. We further show that the error in the channel arising from the injection of faulty magic states scales linearly with the leading-order error of the states. Across all platforms, our approach yields high-fidelity $\\\\mathcal{T}$ gates with reduced noise, lowering the number of distillation levels by up to three. This translates to exponential savings in qubit overhead and offers a practical path toward more resource-efficient universal quantum computation.\",\n",
" 'url': 'https://arxiv.org/abs/2510.00804',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Diffraction by Circular and Triangular Apertures as a Diagnostic Tool of Twisted Matter Waves',\n",
" 'authors': [{'name': 'Maksim Maksimov, Nikita Borodin, Daria Kargina, Dmitry Naumov, Dmitry Karlovets'}],\n",
" 'summary': 'arXiv:2510.00826v1 Announce Type: new \\nAbstract: We study diffraction of twisted matter waves (electrons and light ions carrying orbital angular momentum $\\\\ell/\\\\hbar=0,\\\\pm1,\\\\pm2,\\\\ldots$ by circular and triangular apertures. Within the scalar Kirchhoff-Fresnel framework, circular apertures preserve cylindrical symmetry and produce ringlike far-field profiles whose radii and widths depend on $|\\\\ell|$ but are insensitive to its sign. In contrast, equilateral triangles break axial symmetry and yield structured patterns that encode both the magnitude and the sign of $\\\\ell$. A transparent Fraunhofer mapping links detector coordinates to the Fourier plane, explaining the $(|\\\\ell|+1)$-lobe rule and the sign-dependent rotation of the pattern. We validate these results for both ideal Bessel beams and localized Laguerre-Gaussian packets, and we cross-check them by split-step Fourier propagation of the time-dependent Schr\"odinger equation. From these analyses we extract practical design rules (Fraunhofer distance, lattice pitch, detector sampling) relevant to OAM diagnostics with moderately relativistic electrons with $E_{\\\\rm kin}\\\\sim0.1$ to $5$ MeV and light ions with $E_{\\\\rm kin}\\\\sim0.1$ to $1$ MeV/u. Our results establish triangular diffraction as a simple, passive, and robust method for reading out the OAM content of structured quantum beams.',\n",
" 'url': 'https://arxiv.org/abs/2510.00826',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Quantum adders: on the structural link between the ripple-carry and carry-lookahead techniques',\n",
" 'authors': [{'name': 'Maxime Remaud'}],\n",
" 'summary': 'arXiv:2510.00840v1 Announce Type: new \\nAbstract: This paper is motivated by two key observations. First, Toffoli ladders can be implemented in three distinct ways: with linear or polylogarithmic depth using no ancilla, or with logarithmic depth using ancilla qubits. Second, two fundamental structural approaches to designing addition algorithms can be identified in several well-known quantum adders. At their core is the Toffoli ladder, and both provide a clear and simple connection between ripple-carry and carry-lookahead adder designs. Combining these two structures with the three Toffoli ladder implementations yields six quantum adders: four are well-known and two novel. Notably, one of the novel designs is a carry-lookahead adder that outperforms previous approaches.',\n",
" 'url': 'https://arxiv.org/abs/2510.00840',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Perfect Quantum State Revivals: Designing Arbitrary Potentials with Specified Energy Levels',\n",
" 'authors': [{'name': \"Aaron Danner, Tom\\\\'a\\\\v{s} Tyc\"}],\n",
" 'summary': 'arXiv:2510.00874v1 Announce Type: new \\nAbstract: It is known that there exist a limited number of analytic potentials with the unusual property that any bound quantum state therein will be periodic in time. This is known as a perfect quantum state revival. Examples of such potentials are the infinite well, quantum harmonic oscillator and the P\\\\\"oschl-Teller potentials; here, we present a general method of designing such potentials. A key requirement is that their energy eigenvalues have integer spacings (up to a prefactor). We first analyze the required conditions which permit quantum state revivals for potentials in general, and then we use techniques of iterated Hamiltonian intertwining to construct potentials exhibiting perfect quantum revivals. Our method can readily be extended to multiple dimensions.',\n",
" 'url': 'https://arxiv.org/abs/2510.00874',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Visualizing Quantum Circuits: State Vector Difference Highlighting and the Half-Matrix',\n",
" 'authors': [{'name': 'Michael J. McGuffin, Jean-Marc Robert'}],\n",
" 'summary': \"arXiv:2510.00895v1 Announce Type: new \\nAbstract: Existing graphical user interfaces for circuit simulators often show small visual summaries of the reduced state of each qubit, showing the probability, phase, purity, and/or Bloch sphere coordinates associated with each qubit. These necessarily provide an incomplete picture of the quantum state of the qubits, and can sometimes be confusing for students or newcomers to quantum computing. We contribute two novel visual approaches to provide more complete information about small circuits. First, to complement information about each qubit, we show the complete state vector, and illustrate the way that amplitudes change from layer-to-layer under the effect of different gates, by using a small set of colors, arrows, and symbols. We call this ``state vector difference highlighting'', and show how it elucidates the effect of Hadamard, X, Y, Z, S, T, Phase, and SWAP gates, where each gate may have an arbitrary combination of control and anticontrol qubits. Second, we display pairwise information about qubits (such as concurrence and correlation) in a triangular ``half-matrix'' visualization. Our open source software implementation, called MuqcsCraft, is available as a live online demonstration that runs in a web browser without installing any additional software, allowing a user to define a circuit through drag-and-drop actions, and then simulate and visualize it.\",\n",
" 'url': 'https://arxiv.org/abs/2510.00895',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Optimal Untelegraphable Encryption and Implications for Uncloneable Encryption',\n",
" 'authors': [{'name': 'Anne Broadbent, Eric Culf, Denis Rochette'}],\n",
" 'summary': \"arXiv:2510.00903v1 Announce Type: new \\nAbstract: We investigate the notion of untelegraphable encryption (UTE), a quantum encryption primitive that is a special case of uncloneable encryption (UE), where the adversary's capabilities are restricted to producing purely classical information rather than arbitrary quantum states. We present an unconditionally secure construction of UTE that achieves untelegraphable-indistinguishability security, together with natural multi-ciphertext and bounded collusion-resistant extensions, without requiring any additional assumptions. We also extend this to the unbounded case, assuming pseudo-random unitaries, yielding everlasting security. Furthermore, we derive results on UE using approaches from UTE in the following ways: first, we provide new lower bounds on UTE, which give new lower bounds on UE; second, we prove an asymptotic equivalence between UTE and UE in the regime where the number of adversaries in UE grows. These results suggest that UTE may provide a new path toward achieving a central open problem in the area: indistinguishability security for UE in the plain model.\",\n",
" 'url': 'https://arxiv.org/abs/2510.00903',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Triple-Tone Microwave Control for Sensitivity Optimization in Compact Ensemble Nitrogen-Vacancy Magnetometers',\n",
" 'authors': [{'name': \"Ankita Chakravarty, Romain Ruhlmann, Vincent Halde, David Roy-Guay, Michel Pioro-Ladri\\\\`ere, Lilian Childress, Yves B\\\\'erub\\\\'e-Lauzi\\\\`ere\"}],\n",
" 'summary': 'arXiv:2510.00913v1 Announce Type: new \\nAbstract: Ensembles of nitrogen-vacancy (NV) centers in diamond are a well-established platform for quantum magnetometry under ambient conditions. One challenge arises from the hyperfine structure of the NV, which, for the common $^{14}$N isotope, results in a threefold reduction of contrast and thus sensitivity. By addressing each of the NV hyperfine transitions individually, triple-tone microwave (MW) control can mitigate this sensitivity loss. Here, we experimentally and theoretically investigate the regimes in which triple-tone excitation offers an advantage over standard single-tone MW control for two DC magnetometry protocols: pulsed optically detected magnetic resonance (ODMR) and Ramsey interferometry. We validate a master equation model of the NV dynamics against ensemble NV measurements, and use the model to explore triple-tone vs single-tone sensitivity for different MW powers and NV dephasing rates. For pulsed ODMR, triple-tone driving improves sensitivity by up to a factor of three in the low-dephasing regime, with diminishing gains when dephasing rates approach the hyperfine splitting. In contrast, for Ramsey interferometry, triple-tone excitation only improves sensitivity if MW power is limited. Our results delineate the operating regimes where triple-tone control provides a practical strategy for enhancing NV ensemble magnetometry in portable and power-limited sensors.',\n",
" 'url': 'https://arxiv.org/abs/2510.00913',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Probing quantum advantage for solving the Fermi-Hubbard model with entropy benchmarking',\n",
" 'authors': [{'name': \"Pauline Besserve, Ra\\\\'ul Garc\\\\'ia-Patr\\\\'on\"}],\n",
" 'summary': 'arXiv:2510.00930v1 Announce Type: new \\nAbstract: We developed a practical quantum advantage benchmarking framework that connects the accumulation of entropy in a quantum processing unit and the degradation of the solution to a target optimization problem. The benchmark is based on approximating from below the Gibbs states boundary in the energy-entropy space for the application of interest. We believe the proposed benchmarking technique creates a powerful bridge between hardware benchmarking and application benchmarking, while remaining hardware-agnostic. It can be extended to fault-tolerant scenarios and relies on computationally tractable numerics. We demonstrate its applicability on the problem of finding the ground state of the two-dimensional Fermi-Hubbard.',\n",
" 'url': 'https://arxiv.org/abs/2510.00930',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Block-Encoding Tensor Networks and QUBO Embeddings',\n",
" 'authors': [{'name': 'Sebastian Issel'}],\n",
" 'summary': 'arXiv:2510.00935v1 Announce Type: new \\nAbstract: We give an algorithm that converts any tensor network (TN) into a sequence of local unitaries whose composition block-encodes the network contraction, suitable for Quantum Eigenvalue / Singularvalue Transformation (QET/QSVT). The construction embeds each TN as a local isometry and dilates it to a unitary. Performing this step for every site of the tensor, allows the full network to be block-encoded. The theory is agnostic to virtual-bond sizes; for qubit resource counts and examples we assume global power-of-two padding. Further, we present a deterministic sweep that maps Quadratic Unconstrained Binary Optimization (QUBO) / Ising Hamiltonians into Matrix Product Operators (MPOs) and general TN. We provide formal statements, pseudo-code, resource formulae, and a discussion of the use for state preparation and learning of general quantum operators.',\n",
" 'url': 'https://arxiv.org/abs/2510.00935',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'A hypersphere-like non-Abelian Yang monopole and its topological characterization',\n",
" 'authors': [{'name': 'Shou-Bang Yang, Pei-Rong Han, Wen Ning, Fan Wu, Zhen-Biao Yang, Shi-Biao Zheng'}],\n",
" 'summary': 'arXiv:2510.00941v1 Announce Type: new \\nAbstract: Synthetic monopoles, which correspond to degeneracies of Hamiltonians, play a central role in understanding exotic topological phenomena. Dissipation-induced non-Herminicity (NH), extending the eigenspectra of Hamiltonians from the real to complex domain, largely enriches the topological physics associated with synthetic monopoles. We here investigate exceptional points (EPs) in a four-dimensional NH system, finding a hypersphere-like non-Abelian Yang monopole in a five-dimensional parameter space, formed by EP2 pairs. Such an exotic structure enables the NH Yang monopole to exhibit a unique topological transition, which is inaccessible with the point-like counterpart. We characterize such a topological phenomenon with the second Chern number.',\n",
" 'url': 'https://arxiv.org/abs/2510.00941',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Cumulant expansion approach to the decay dynamics of interacting M\\\\\"ossbauer nuclei after strong impulsive excitation',\n",
" 'authors': [{'name': 'Miriam Gerharz, J\\\\\"org Evers'}],\n",
" 'summary': 'arXiv:2510.00970v1 Announce Type: new \\nAbstract: Recent progress in accelerator-based x-ray sources brings higher excitation of ensembles of M\\\\\"ossbauer nuclei closer to experimental feasibility. Yet, a theoretical modeling of the decay dynamics of the interacting nuclear ensemble after the impulsive excitation is still an open challenge. Here, we derive a set of nonlinear equations which is capable of efficiently modeling large nuclear ensembles for arbitrary degrees of excitation. As key signature for higher excitation, we identify a non-linear time-evolution of the nuclear dipole phase, which can be tuned via the scattering geometry, and interferometrically be measured. Furthermore, we identify interesting finite-size effects in the nuclear dynamics of small ensembles. Our results provide important guidance for future experiments aiming at the non-linear excitation of nuclei. We further envision the exploration of finite size-effects in M\\\\\"ossbauer spectroscopy with highest spatial resolution, i.e., small sample volumes.',\n",
" 'url': 'https://arxiv.org/abs/2510.00970',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Flexible Catalysis',\n",
" 'authors': [{'name': \"M\\\\'at\\\\'e Weisz, Sergii Strelchuk\"}],\n",
" 'summary': 'arXiv:2510.01065v1 Announce Type: new \\nAbstract: In quantum information and computation, a central challenge is to determine which quantum states can be transformed into one another under restricted sets of free operations. While many transformations are impossible directly, catalytic processes can enable otherwise forbidden conversions: an auxiliary quantum state (the catalyst) facilitates the transformation while remaining unchanged. In this work, we introduce flexible catalysis, a generalization in which the catalyst is allowed to transform into a different auxiliary state, provided it remains a valid catalyst. We show that this framework subsumes both standard catalytic and multicopy transformations, and we analyze its advantages across several classes of free operations. In particular, we prove that when the free operations are local unitaries or permutation matrices, flexible catalysis enables state extractions that are unattainable with standard catalysis alone.',\n",
" 'url': 'https://arxiv.org/abs/2510.01065',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Probability-Phase Mutual Information',\n",
" 'authors': [{'name': 'Cameron Hahn, Nishan Ranabhat, Fabio Anza'}],\n",
" 'summary': 'arXiv:2510.01104v1 Announce Type: new \\nAbstract: Building on the geometric formulation of quantum mechanics, we develop a coherence theory for ensembles that exploits the probability-phase structure of the quantum state space. Standard coherence measures quantify superposition within density matrices but cannot distinguish ensembles that produce the same mixed state through different distributions of pure states. First, we introduce the probability-phase mutual information $I(P;\\\\Phi)$, which measures statistical correlations between measurement-accessible probabilities and measurement-inaccessible phases across an ensemble. Then, we prove this satisfies the axioms of a coherence monotone, establishing it as a bona-fide measure of ensemble-level coherence. Eventually, through the definition of the \\\\emph{coherence surplus} $\\\\delta_{\\\\mathcal{C}} \\\\geq 0$, we show how ensemble coherence relates to, but exceeds, density-matrix coherence, thus quantifying structure lost in statistical averaging.',\n",
" 'url': 'https://arxiv.org/abs/2510.01104',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'From Bell Products to GHZ: Quantum Memories via Emergent Hamiltonians',\n",
" 'authors': [{'name': 'Anubhab Sur, Qiujiang Guo, Rubem Mondaini'}],\n",
" 'summary': 'arXiv:2510.01117v1 Announce Type: new \\nAbstract: With the advent of exquisite quantum emulators, storing highly entangled many-body states becomes essential. While entanglement typically builds over time when evolving a quantum system initialized in a product state, freezing that information at any given instant requires quenching to a Hamiltonian with the time-evolved state as an eigenstate, a concept we realize via an Emergent Hamiltonian framework. While the Emergent Hamiltonian is generically non-local and may lack a closed form, we show examples where it is exact and local, thereby enabling, in principle, indefinite state storage limited only by experimental imperfections. Unlike other phenomena, such as many-body localization, our method preserves both local and global properties of the quantum state. In some of our examples, we demonstrate that this protocol can be used to store maximally entangled multi-qubit states, such as tensor products of Bell states, or fragile, globally distributed entangled states, in the form of GHZ states, which are often challenging to initialize in actual devices.',\n",
" 'url': 'https://arxiv.org/abs/2510.01117',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'A Contextual Seven-Valued Logic (\\\\emph{Saptabhang\\\\=inaya}) for Quantum Systems',\n",
" 'authors': [{'name': 'Partha Ghose'}],\n",
" 'summary': 'arXiv:2510.01120v1 Announce Type: new \\nAbstract: The quantum measurement problem is often presented as a conflict between unitary evolution and non-unitary collapse. Drawing on Wittgenstein\\'s later philosophy of language and Bohr\\'s principle of complementarity, we argue that this conflict is a grammatical illusion arising from cross-context conflations. To address this, we introduce a contextual seven-valued logic modeled on the Jaina doctrine of \\\\emph{saptabhang\\\\=inaya} (sevenfold predication). In one formulation, each proposition is assigned a triplet $(t,f,u)$ indicating its status as true, false, or unsayable within a given context, with paraconsistent rules blocking triviality. In another, contexts are explicitly formalized through quantified conditionals, aligning directly with Bohr\\'s view that meaning derives from experimental arrangements. By comparing these two complementary approaches, we show how canonical paradoxes--including Schr\\\\\"odinger\\'s cat and Wigner\\'s friend--dissolve once context is made explicit. The result is a flexible logical framework that reconciles Wittgensteinian conceptual therapy, Bohr\\'s complementarity, and the Jaina pluralistic tradition, offering a coherent semantics for quantum discourse.',\n",
" 'url': 'https://arxiv.org/abs/2510.01120',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Credit Default Prediction with Projected Quantum Feature Models and Ensembles',\n",
" 'authors': [{'name': 'Andras Ferenczi, Dagen Wang, Mariya Bessonova, Sutapa Samanta, Todd Hodges, John Hancock, Guillermo Mijares Vilari\\\\~no, Amol Deshmukh, Mariana LaDue, Girish Pillai, Hilary Packer'}],\n",
" 'summary': 'arXiv:2510.01129v1 Announce Type: new \\nAbstract: Accurate prediction of future loan defaults is a critical capability for financial institutions that provide lines of credit. For institutions that issue and manage extensive loan volumes, even a slight improvement in default prediction precision can significantly enhance financial stability and regulatory adherence, resulting in better customer experience and satisfaction. Datasets associated with credit default prediction often exhibit temporal correlations and high dimensionality. These attributes can lead to accuracy degradation and performance issues when scaling classical predictive algorithms tailored for these datasets. Given these limitations, quantum algorithms, leveraging their innate ability to handle high-dimensionality problems, emerge as a promising new avenue alongside classical approaches. To assess the viability and effectiveness of quantum methodologies, we investigate a hybrid quantum-classical algorithm, utilizing a publicly available \"Default Prediction Dataset\" released as part of a third-party data science competition. Specifically, we employ hybrid quantum-classical machine learning models based on projected quantum feature maps and their ensemble integration with classical models to examine the problem of credit card default prediction. Our results indicate that the ensemble models based on the projected quantum features were capable of slightly improving the purely classical results expressed via a \"Composite Default Risk\" (CDR) metric. Furthermore, we discuss the practical applicability of the studied quantum-classical machine learning techniques and address open questions concerning their implementation.',\n",
" 'url': 'https://arxiv.org/abs/2510.01129',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Advantage for Discrete Variational Quantum Algorithms in Circuit Recompilation',\n",
" 'authors': [{'name': 'Oleksandr Kyriienko, Chukwudubem Umeano, Zo\\\\\"e Holmes'}],\n",
" 'summary': 'arXiv:2510.01154v1 Announce Type: new \\nAbstract: The relative power of quantum algorithms, using an adaptive access to quantum devices, versus classical post-processing methods that rely only on an initial quantum data set, remains the subject of active debate. Here, we present evidence for an exponential separation between adaptive and non-adaptive strategies in a quantum circuit recompilation task. Our construction features compilation problems with loss landscapes for discrete optimization that are unimodal yet non-separable, a structure known in classical optimization to confer exponential advantages to adaptive search. Numerical experiments show that optimization can efficiently uncover hidden circuit structure operating in the regime of volume-law entanglement and high-magic, while non-adaptive approaches are seemingly limited to exhaustive search requiring exponential resources. These results indicate that adaptive access to quantum hardware provides a fundamental advantage.',\n",
" 'url': 'https://arxiv.org/abs/2510.01154',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Superpositions of Quantum Gaussian Processes',\n",
" 'authors': [{'name': 'Lorenzo Braccini, Sougato Bose, Alessio Serafini'}],\n",
" 'summary': \"arXiv:2510.01156v1 Announce Type: new \\nAbstract: We generalise the Gaussian formalism of Continuous Variable (CV) systems to describe their interactions with qubits/qudits that result in quantum superpositions of Gaussian processes. To this end, we derive a new set of equations in closed form, which allows us to treat hybrid systems' unitary and open dynamics exactly (without truncation), as well as measurements (ideal and noisy). The $N$-qubits $n$-modes entangled states arising during such processes are named Gaussian-Branched Cat States (GCSs). They are fully characterised by their superposed phase-space quantities: sets of generalised complex first moments and covariance matrices, along with the qubit reduced density matrix (QRDM). We showcase our general formalism with two paradigmatic examples: i) measurement-based entanglement of two qubits via a squeezed, leaking, and measured resonator; ii) the generation of the Wigner negativity of a levitated nanoparticle undergoing Stern-Gerlach interferometry in a diffusive environment.\",\n",
" 'url': 'https://arxiv.org/abs/2510.01156',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Combining Error Detection and Mitigation: A Hybrid Protocol for Near-Term Quantum Simulation',\n",
" 'authors': [{'name': 'Dawei Zhong, William Munizzi, Huo Chen, Wibe Albert de Jong'}],\n",
" 'summary': 'arXiv:2510.01181v1 Announce Type: new \\nAbstract: Practical implementation of quantum error correction is currently limited by near-term quantum hardware. In contrast, quantum error mitigation has demonstrated strong promise for improving the performance of noisy quantum circuits without the requirement of full fault tolerance. In this work, we develop a hybrid error suppression protocol that integrates Pauli twirling, probabilistic error cancellation, and the $[[n, n-2, 2]]$ quantum error detecting code. In addition, to reduce overhead from error mitigation components of our method, we modify Pauli twirling by lowering the number of Pauli operators in the twirling set, and apply probabilistic error cancellation at the end of the encoded circuit to remove undetectable errors. Finally, we demonstrate our protocol on a non-Clifford variational quantum eigensolver circuit that estimates the ground state energy of $\\\\rm H_2$ using both \\\\texttt{qiskit} AerSimulator and the IBM quantum processor \\\\texttt{ibm\\\\_brussels}.',\n",
" 'url': 'https://arxiv.org/abs/2510.01181',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Defect mediated quantum melting of charge ordered insulators',\n",
" 'authors': [{'name': 'Abijith Krishnan, Ajesh Kumar, T. Senthil'}],\n",
" 'summary': 'arXiv:2510.00099v1 Announce Type: cross \\nAbstract: Two-dimensional (2d) electronic systems on a lattice at fractional filling $\\\\nu = p/q$ exhibit a competition between charge ordered insulators, called Wigner-Mott insulators (WMIs), at large Coulomb repulsion and Fermi-liquid metals at large electronic kinetic energy. When those two energy scales are roughly equal, insulating states that restore the lattice translation symmetry, which we call quantum charge liquids (QCLs), may emerge. When gapped, these QCLs must exhibit topological order. In this work, we show that the allowed topological ordered phases that are proximate to the WMI strongly depend on the charge ordering in the WMI. In particular, we show that when $q$ is even, no direct transition exists between a WMI with the smallest allowed unit cell size from filling constraints, i.e., the \"minimal\" WMI, and the topological order with the smallest ground state degeneracy on a torus allowed by filling constraints, i.e., the \"minimal\" TO. Furthermore, we describe the quantum melting transition of the WMIs to the proximate QCLs in terms of the proliferation of the topological defects of the WMIs. The field theory of this transition in terms of the topological defects reveals their role as precursors to the anyon excitations in the QCLs.',\n",
" 'url': 'https://arxiv.org/abs/2510.00099',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Continuum Fractons: Quantization and the Many Body Problem',\n",
" 'authors': [{'name': 'Ylias Sadki, Abhishodh Prakash, S. L. Sondhi'}],\n",
" 'summary': 'arXiv:2510.00110v1 Announce Type: cross \\nAbstract: We formulate a continuum quantum mechanics for non-relativistic, dipole-conserving fractons. Imposing symmetries and locality results in novel phenomena absent in ordinary quantum mechanical systems. A single fracton has a vanishing Hamiltonian, and thus its spectrum is entirely composed of zero modes. For the two-body problem, the Hamiltonian is perfectly described by Sturm--Liouville (SL) theory. The effective two-body Hamiltonian is an SL operator on $(-1,1)$ whose spectral type is set by the edge behavior of the pair inertia function $K(x)\\\\sim \\\\lvert x -x_\\\\mathrm{edge} \\\\rvert^{\\\\theta}$. We identify a sharp transition at $\\\\theta=2$: for $\\\\theta<2$ the spectrum is discrete and wavepackets reflect from the edges, whereas for $\\\\theta>2$ the spectrum is continuous and wavepackets slow down and, dominantly, squeeze into asymptotically narrow regions at the edges. For three particles, the differential operator corresponding to the Hamiltonian is piecewise defined, requiring several \"matching conditions\" which cannot be analyzed as easily. We proceed with a lattice regularization that preserves dipole conservation, and implicitly selects a particular continuum Hamiltonian that we analyze numerically. We find a spectral transition in the three-body spectrum, and find evidence for quantum analogs of fracton attractors in both eigenstates and in the time evolution of wavepackets. We provide intuition for these results which suggests that the lack of ergodicity of classical continuum fractons will survive their quantization for large systems.',\n",
" 'url': 'https://arxiv.org/abs/2510.00110',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Neutrino backgrounds in matter-wave interferometry: implications for dark matter searches and beyond-Standard Model physics',\n",
" 'authors': [{'name': 'Jo\\\\~ao Paulo Pinheiro'}],\n",
" 'summary': \"arXiv:2510.00142v1 Announce Type: cross \\nAbstract: We present a comprehensive theoretical analysis of neutrino-induced decoherence in macroscopic matter-wave interferometry experiments designed to search for dark matter and beyond-Standard Model physics. Our calculation includes contributions from the cosmic neutrino background (C$\\\\nu$B), solar neutrinos, and reactor antineutrinos, accounting for coherent scattering processes across nuclear, atomic, and macroscopic length scales. Within the Standard Model, we find negligible decoherence rates for planned experiments such as MAQRO ($s/\\\\sigma_s \\\\sim 10^{-27}$) and terrestrial interferometers like Pino ($s/\\\\sigma_s \\\\sim 10^{-22}$). However, these experiments achieve competitive sensitivity to beyond-Standard Model physics through light vector mediator interactions, with C$\\\\nu$B constraining coupling products to $g_\\\\nu g_n \\\\lesssim 10^{-17}$ for $Z'$ masses below 1 eV. Our results provide a theoretical framework for interpreting matter-wave interferometry measurements in terms of neutrino interaction physics and for deriving constraints on BSM models from experimental data.\",\n",
" 'url': 'https://arxiv.org/abs/2510.00142',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Generalized Time-Coarse Graining via an Operator Cumulant Expansion',\n",
" 'authors': [{'name': 'Leon Bello, Tal Rubin, Wentao Fan, Nathaniel Fisch, Hakan T\\\\\"ureci'}],\n",
" 'summary': 'arXiv:2510.00380v1 Announce Type: cross \\nAbstract: We introduce a general framework for deriving effective dynamics from arbitrary time-dependent generators, based on a systematic operator cumulant expansion. Unlike traditional approaches, which typically assume periodic or adiabatic driving, our method applies to systems with general time dependencies and is compatible with any dynamics generated by a linear operator -- Hamiltonian or not, quantum or classical, open or closed. This enables modeling of systems exhibiting strong modulation, dissipation, or non-adiabatic effects. Our approach unifies Hamiltonian techniques such as Lie-transform Perturbation Theory (LPT) with averaging-based methods like Time-Coarse Graining (TCG), revealing their structural equivalence through the lens of generalized cumulants. It also clarifies how non-Hamiltonian terms naturally emerge from averaging procedures, even in closed systems. We illustrate the power and flexibility of the method by analyzing a damped, parametrically driven Kapitza pendulum, a system beyond the reach of standard tools, demonstrating how accurate effective equations can be derived across a wide range of regimes.',\n",
" 'url': 'https://arxiv.org/abs/2510.00380',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Study of spin states in vacuum pair production via the Dirac-Heisenberg-Wigner formalism',\n",
" 'authors': [{'name': 'R. Z. Jiang, Z. L. Li, Y. J. Li'}],\n",
" 'summary': 'arXiv:2510.00455v1 Announce Type: cross \\nAbstract: A general spin-resolved momentum distribution of electron-positron pairs produced in strong external fields is derived by combining the covariant spin projection operator and the Dirac-Heisenberg-Wigner (DHW) formalism. The result shows that the spin-resolved and helicity-resolved momentum distributions given in previous literature are actually two special cases of it. For any spin-direction unit vector, numerical investigations demonstrate that when the $z$-component of the unit vector vanishes, the number density of produced spin-up and spin-down particles is equal, while their momentum distributions have some asymmetry. For a nonzero $z$-component of the unit vector, there is a difference of $1-3$ orders of magnitude in the number density of spin-up and spin-down particles induced by angular momentum transfer in multiphoton absorption. Moreover, as the electric field strength increases and/or the field frequency decreases, the asymmetry between the spin-up and spin-down particle number density decreases rapidly. These results offer an approach to study general spin states in vacuum pair production, and enhance our understanding of angular momentum transfer from fields to matter in extreme environments.',\n",
" 'url': 'https://arxiv.org/abs/2510.00455',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Enhancing pair production with optimized chirped laser fields',\n",
" 'authors': [{'name': 'Z. L. Li, Y. F. Chen, R. Z. Jiang, Y. J. Li'}],\n",
" 'summary': 'arXiv:2510.00465v1 Announce Type: cross \\nAbstract: The optimal chirped field for enhancing electron-positron (EP) pair production is explored using a quantum kinetic approach. First, the momentum spectrum and number density of EP pairs produced by Gaussian chirped fields are investigated. The results show that the momentum spectrum exhibits distinct interference patterns, while the number density grows monotonically with chirp parameters but oscillates with the carrier angular frequency. Moreover, the number density increases by four orders of magnitude compared to chirp-free fields. The results are further compared with those from four other chirped fields: frequency-modulated, linear, quadratic, and sinusoidal chirp. The analysis reveals that the maximum number density for sinusoidally chirped fields is the highest, followed by Gaussian, frequency-modulated, quadratically, and linearly chirped fields. This ranking also applies to the maximum enhancement factors for these chirped fields. Notably, the number density for sinusoidally chirped fields improves nine orders of magnitude compared to chirp-free fields. These results not only deepen our understanding of pair production in chirped fields but also provide significant optimization strategies for future vacuum pair production experiments.',\n",
" 'url': 'https://arxiv.org/abs/2510.00465',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Sample-based Quantum Diagonalization Methods for Modeling the Photochemistry of Diazirine and Diazo Compounds',\n",
" 'authors': [{'name': 'Saurabh Shivpuje, Tanvi P. Gujarati, Richard Van, Frank C. Pickard IV, Triet Friedhoff, Ieva Liepuoniute, Wade Davis, Gavin O. Jones, Alexey Galda'}],\n",
" 'summary': 'arXiv:2510.00484v1 Announce Type: cross \\nAbstract: Diazirines and diazo compounds are widely employed as photoreactive precursors for generating carbenes, key intermediates in chemical biology and materials science. However, computationally modeling their reaction pathways remains challenging due to a need for large active spaces and the requirement to accurately capture excited-state surfaces along with transition states and conical intersections. In this work, we utilize a hybrid quantum-classical workflow for investigating carbene formation in representative diazirine-diazomethane systems. Our approach leverages Sample-based Quantum Diagonalization (SQD) and its extended variant (Ext-SQD) for ground and excited-state analysis, combined with classical tools for geometry optimization, active-space selection, and diagnostic evaluation. Quantum computations were carried out on superconducting quantum processors, and results for both aliphatic and aryl-substituted diazirine-diazomethane pairs were benchmarked against established classical methods, including DFT, CCSD, CASCI, and SCI. SQD achieves accuracy surpassing the chemical accuracy threshold for nearly all stationary points on the potential energy surface of parent diazirine relative to the CASCI(12,10) reference, and remains close to chemical accuracy for phenyl-substituted diazirine in a (30,30) active space, with an average deviation of 1.1 kcal/mol relative to the SCI benchmark. SQD closely follows CASCI and SCI trends, showing consistent agreement. The findings demonstrate the promise of quantum computing frameworks in modeling photochemical transformations of electronically complex and pharmacologically relevant molecules.',\n",
" 'url': 'https://arxiv.org/abs/2510.00484',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Temperature Dependence of the Response Functions of Graphene: Impact on Casimir and Casimi-Polder Forces in and out of Thermal Equilibrium',\n",
" 'authors': [{'name': 'G. L. Klimchitskaya, V. M. Mostepanenko'}],\n",
" 'summary': 'arXiv:2510.00672v1 Announce Type: cross \\nAbstract: We review and obtain some new results on the temperature dependence of spatially nonlocal response functions of graphene and their applications to calculation of both the equilibrium and nonequilibrium Casimir and Casimir-Polder forces. After a brief summary of the properties of the polarization tensor of graphene obtained within Dirac model in the framework of quantum field theory, we derive the expressions for the longitudinal and transverse dielectric functions. The behavior of these functions at different temperatures is investigated in the regions below and above the threshold. Special attention is paid to the double pole at zero frequency which is present in the transverse response function of graphene. An application of the response functions of graphene to calculation of the equilibrium Casimir force between two graphene sheets and Casimir-Polder forces between an atom (nanoparticle) and a graphene sheet is considered with due attention to the role of a nonzero energy gap, chemical potential and a material substrate underlying the graphene sheet. The same subject is discussed for out-of-thermal-equilibrium Casimir and Casimir-Polder forces. The role of the obtained and presented results for fundamental science and nanotechnology is outlined.',\n",
" 'url': 'https://arxiv.org/abs/2510.00672',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'An InAsSb surface quantum well with in-situ deposited Nb as a platform for semiconductor-superconductor hybrid devices',\n",
" 'authors': [{'name': 'Sjoerd Telkamp, Zijin Lei, Tommaso Antonelli, Christian Reichl, Ilya Besedin, Georg Jakobs, Stefan F\\\\\"alt, Christian Marty, R\\\\\"udiger Schott, Werner Wegscheider'}],\n",
" 'summary': 'arXiv:2510.00711v1 Announce Type: cross \\nAbstract: We present a novel semiconductor-superconductor hybrid material based on a molecular beam epitaxially grown InAsSb surface quantum well with an in-situ deposited Nb top layer. Relative to conventional Al-InAs based systems, the InAsSb surface quantum well offers a lower effective mass and stronger spin-orbit interaction, while the Nb layer has a higher critical temperature and a larger critical magnetic field. The in-situ deposition of the Nb results in a high-quality interface that enables strong coupling to the InAsSb quantum well. Transport measurements on Josephson junctions reveal an induced superconducting gap of 1.3 meV. Furthermore, a planar asymmetric SQUID is realized, exhibiting gate-tunable superimposed oscillations originating from both the individual Josephson junction and the full SQUID loop. The large induced superconducting gap combined with strong spin-orbit interaction position this material as an attractive platform for experiments exploring gate-tunable superconductivity and topological superconducting devices.',\n",
" 'url': 'https://arxiv.org/abs/2510.00711',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': \"Pointwise spinor quantum fields cannot be microcausal nor Poincar\\\\'e covariant\",\n",
" 'authors': [{'name': 'Samuel Fedida'}],\n",
" 'summary': \"arXiv:2510.00786v1 Announce Type: cross \\nAbstract: We extend and strengthen no-go results on pointwise-defined quantum fields to cover general spinors. We show that the weak continuity of quantum fields rules out equal-time canonical conjugate (anti)commutation relations in globally hyperbolic spacetimes; for quantum fields on Minkowski spacetime, weakly continuous translation covariance enforces the needed continuity and yields the same no-go. We also extend Wightman's no-go theorem to show that the weak continuity of quantum fields rules out fermionic microcausality in $C^2$ Lorentzian spacetimes. We finish by generalising Wizimirski's no-go theorem to show that the existence of a Poincar\\\\'e-invariant vacuum precludes pointwise spinorial covariance on a Minkowski background -- ruling out, in particular, pointwise covariance for Weyl and Dirac fermions, for photons and gravitons -- which further highlights the difficulty of quantising gravity pointwisely.\",\n",
" 'url': 'https://arxiv.org/abs/2510.00786',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Effective Dynamics for Weakly Interacting Bosons in an Iterated High-Density Thermodynamic Limit',\n",
" 'authors': [{'name': 'Daniele Ferretti, Kalle Koskinen'}],\n",
" 'summary': 'arXiv:2510.00839v1 Announce Type: cross \\nAbstract: We study the time evolution of weakly interacting Bose gases on a three-dimensional torus of arbitrary volume. The coupling constant is supposed to be inversely proportional to the density, which is considered to be large and independent of the number of particles. We take into account a class of initial states exhibiting quasi-complete Bose-Einstein condensation. For each fixed time in a finite interval, we prove the convergence of the one-particle reduced density matrix to the projection onto the normalized order parameter describing the condensate - evolving according to the Hartree equation - in the iterated limit where the volume (and therefore the particle number), and subsequently the density go to infinity. The rate of convergence depends only on the density and on the decay of both the expected number of particles and the energy of the initial quasi-vacuum state.',\n",
" 'url': 'https://arxiv.org/abs/2510.00839',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'QUASAR: Quantum Assembly Code Generation Using Tool-Augmented LLMs via Agentic RL',\n",
" 'authors': [{'name': 'Cong Yu, Valter Uotila, Shilong Deng, Qingyuan Wu, Tuo Shi, Songlin Jiang, Lei You, Bo Zhao'}],\n",
" 'summary': 'arXiv:2510.00967v1 Announce Type: cross \\nAbstract: Designing and optimizing task-specific quantum circuits are crucial to leverage the advantage of quantum computing. Recent large language model (LLM)-based quantum circuit generation has emerged as a promising automatic solution. However, the fundamental challenges remain unaddressed: (i) parameterized quantum gates require precise numerical values for optimal performance, which also depend on multiple aspects, including the number of quantum gates, their parameters, and the layout/depth of the circuits. (ii) LLMs often generate low-quality or incorrect quantum circuits due to the lack of quantum domain-specific knowledge. We propose QUASAR, an agentic reinforcement learning (RL) framework for quantum circuits generation and optimization based on tool-augmented LLMs. To align the LLM with quantum-specific knowledge and improve the generated quantum circuits, QUASAR designs (i) a quantum circuit verification approach with external quantum simulators and (ii) a sophisticated hierarchical reward mechanism in RL training. Extensive evaluation shows improvements in both syntax and semantic performance of the generated quantum circuits. When augmenting a 4B LLM, QUASAR has achieved the validity of 99.31% in Pass@1 and 100% in Pass@10, outperforming industrial LLMs of GPT-4o, GPT-5 and DeepSeek-V3 and several supervised-fine-tuning (SFT)-only and RL-only baselines.',\n",
" 'url': 'https://arxiv.org/abs/2510.00967',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Deterministic Detection of Single Ion Implantation',\n",
" 'authors': [{'name': 'Mason Adshead, Lok Kan Wan, Maddison Coke, Richard J Curry'}],\n",
" 'summary': 'arXiv:2510.01035v1 Announce Type: cross \\nAbstract: Single ion implantation using focused ion beam systems enables high spatial resolution and maskless doping for rapid and scalable engineering of materials for quantum technologies, particularly qubits and colour centres in solid-state hosts. In such applications, the confidence with which a single ion can be deterministically implanted is crucial, and so the efficiency of the detection mechanism is a vital parameter. Here, we present a study of the single-ion detection efficiency for a variety of ion species (Si, P, Mn, Co, Ge, Sb, Au and Bi) into various hosts (Si, SiO2, Al2O3, GaAs, diamond and SiC). The effect of varying ion mass, charge and kinetic energy are studied, in addition to the cluster implantation of Sb, Au and Bi. We demonstrate that it is possible to achieve detection efficiencies >90% for a wide range of ion species and substrate combination through selection of the implantation parameters. Furthermore, detection efficiencies of 100% are found for the doping of Sb clusters which is of direct relevance for the future fabrication of quantum devices.',\n",
" 'url': 'https://arxiv.org/abs/2510.01035',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'},\n",
" {'title': 'Triacontagonal proofs of the Bell-Kochen-Specker theorem',\n",
" 'authors': [{'name': 'P. K. Aravind, Justin Y. J. Burton, Guillermo Nunez-Ponasso, D. Richter'}],\n",
" 'summary': \"arXiv:2510.01063v1 Announce Type: cross \\nAbstract: Coxeter pointed out that a number of polytopes can be projected orthogonally into two dimensions in such a way that their vertices lie on a number of concentric regular triacontagons (or 30-gons). Among them are the 600-cell and 120-cell in four dimensions and Gosset's polytope in eight dimensions. We show how these projections can be modified into Kochen-Secker diagrams from which parity proofs of the Bell-Kochen-Specker theorem are easily extracted. Our construction trivially yields parity proofs of fifteen bases for all theree polytopes and also allows many other proofs of the same type to be constructed for two of them. The defining feature of these proofs is that they have a fifteen-fold symmetry about the center of the Kochen-Specker diagram and thus involve both rays and bases that are multiples of fifteen. Any proof of this type can be written as a word made up of an odd number of distinct letters, each representing an orbit of fifteen bases. Knowing a word makes it possible to write down all the features of the associated proof without first having to recover its bases. A comparison is made with earlier approaches that have been used to obtain parity proofs in these polytopes, and two questions related to possible applications of these polytopes are raised.\",\n",
" 'url': 'https://arxiv.org/abs/2510.01063',\n",
" 'published': 'Thu, 02 Oct 2025 00:00:00 -0400'}]"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"papers_today"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "8d7d18cd",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "AgenticAI",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.13"
}
},
"nbformat": 4,
"nbformat_minor": 5
}