Building an AI Multi-Agent Tool for Quantum  Computing Use Case Discovery

15 min read

Oscar Bastidas Jossa, Artificial Intelligence Engineer
Alberto Calvo, CTO and co-founder

Summary

Quantum computing holds transformative potential, yet its practical adoption remains hindered by complexity and uncertainty about real-world applications. To address this gap, we present the Qcentroid multi-agent AI tool that systematically translates business needs into scientifically grounded quantum computing use cases through a three-stage architecture: Interview, Generator, and Deep Research. In the Interview stage, an interactive AI agent collects organizational objectives and computational bottlenecks, producing a structured problem summary. The Generator stage validates problem suitability and synthesizes candidate quantum applications by aligning business needs with established quantum computing algorithms. The Deep Research stage employs a parallelized, multi-agent framework to conduct rigorous feasibility analyses. Drawing on semantic search over curated scientific databases, online literature retrieval, and iterative evaluation, the system produces comprehensive feasibility reports detailing scientific and mathematical basis, suitability of employing Quantum/Quantum-Inspired computing methods, scientific evidence, limitations and risks, for the proposed use cases. By combining conversational problem scoping, algorithmic mapping, and autonomous scientific investigation, our platform enables organizations to make evidence-based, strategic decisions about quantum adoption.

The problem, and what does our new tool address? 

Despite the fact that developing end-to-end, production-ready quantum solutions for business problems is not yet ready, recent research advances, such as progress on error-correction techniques and improved qubit stability, show clear movement toward practical deployment [1]. Because potential applications span numerous industries, the space for application software is far from saturated [2], offering significant opportunity but also considerable uncertainty. As a result, organizations often struggle to assess whether their computational challenges are well-suited to quantum approaches and how best to evaluate and validate such opportunities. Survey studies, such as [3], highlight that the complexity of quantum systems and software is among the primary barriers to broader adoption. This uncertainty slows progress and leaves decision-makers without the evidence needed to confidently justify investment.

Our tool, the QCentroid Multi-Agent AI Use Case Generator tool, was designed precisely to try  bridging this gap. It transforms informal business conversations into structured, scientifically grounded quantum computing use cases. By combining conversational scoping, algorithmic mapping, and autonomous deep research, the system helps organizations cut through complexity and make data-driven decisions about quantum feasibility.

Technical Concepts

Before proceeding to explain each stage of the architecture, let´s briefly explain some technical concepts that are used in this architecture and will be mentioned along the article.

Prompting techniques: We applied several prompting techniques across different sections of the system. These included:

  • Persona Prompting: Crafting prompts that assign the model a specific role or perspective.
  • Chain-of-Thought (CoT) Prompting: This technique enables complex reasoning by guiding the model through intermediate reasoning steps [4].
  • Few-Shot Prompting: In addition to task descriptions, the model is shown a few illustrative examples. This helps generalize to new tasks by following the demonstrated patterns [5].

Graphs: The architecture was implemented using LangGraph. At its core, LangGraph models workflows as graphs, where the behavior of agents is defined by three main components:

  • States: Shared data structures that represent the current state of the application.
  • Nodes: Functions that encode the logic of the agents.
  • Edges: Functions that determine the next step to execute based on the current state.

Subgraphs: A subgraph is a graph encapsulated as a single node within another graph. In our architecture, the three main stages—Interview, Generator, and Deep Research—were encapsulated as subgraphs within the multi-agent system. This design offers several benefits:

  • Modularity: Each subgraph can be developed and tested independently, having their own states. For example, we could test different types of users and business contexts in the interview subgraph, without needing to run subsequent subgraphs. The same applied to the other stages.
  • Specialization: Agents can focus on specific domains. This opens opportunities to expand beyond quantum computing—for instance, by adding expert agents specialized in Machine Learning (ML).
  • Control: Flow management is more straightforward. For example, in the Deep Research subgraph, we were able to execute parallel procedures efficiently thanks to the subgraph-based design.
Multi-agent AI architecture for quantum computing use case generation diagram

Figure 1. Example of shared and private states in two subgraphs.

One example of the benefits of modularity is illustrated in Figure 1. The diagram shows how two subgraphs share the common “messages” state, while still maintaining their own private states: “generate_use_cases” for the Generator subgraph and “pinecone_search_query” for the Deep Research subgraph.

Context engineering: is about designing dynamic systems that provide the right information and tools in the right format, enabling Language Large models (LLM) to accomplish tasks effectively. Complex agents such as the architecture shown in this article, gather context from multiple sources— users, past interactions, tool calls, or external data—and must integrate these dynamically. Since LLMs cannot infer missing details, success depends on supplying accurate context and relevant tools. Equally important is format: clear, structured inputs enable the model to reason and act far more reliably than poorly organized or ambiguous data [6]. Context engineering was widely used in the research agent process, which we will discuss later.

Structured output: Refers to guiding the model to produce responses in a predefined format, it is important for context engineering to provide clear and structured information.  To achieve this, a schema must first be defined—commonly using a JSON-like structure or libraries such as Pydantic. LangChain simplifies this process with the with_structured_output() method, which automatically binds the schema to the model and ensures the output is parsed correctly into the desired structure.

Map-Reduce: Advanced design pattern that allows parallel execution in <LangGraph, using the Send object.

Retrieval Augmented Generation (RAG): is the process of optimizing the output of a large language model, so it references an authoritative knowledge base outside of its training data sources before generating a response [7].

Note:  In this article, the words subgraphs and agents can be used interchangeably, since in our architecture each subgraph acts as an agent that can decide the control flow of the application.

The Architecture

Figure 2. AI Multi-Agent Quantum computing Use Case Generator architecture

This section provides a comprehensive overview of our Multi-Agent Quantum Computing Use Case Generator tool.  The architecture is divided into three-stages: Interview, Generator, and Deep Research, as seen in Figure 2. 

In this architecture, each stage corresponds to a subgraph that acts as an independent agent and has its own states. The generator and the Deep Research agents, receive the conversation summary and quantum computing use cases from previous stages, respectively. However it is worth noting that these subgraphs also share some other states, as for example the states of the conversation messages between the user and the interview agent.

Stage 1: Interview – Scope

The foundation of any relevant use case is a deep understanding of the problem. Our initial stage is an interactive interview agent designed to map the user’s specific context.

Figure 3. Example of user interaction.

The agent in this stage contained three main nodes: get_human_feedback, conduct_interview, evaluate_interview. These nodes were connected through edges in a loop, to perform the following tasks:

  • User Data Collection: In this node the agent engages the user to collect critical data points: strategic objectives, operational challenges, existing computational bottlenecks, and unexplored opportunities. We used the CoT Prompting technique, to guide the agent in the collection of the user information. As mentioned before, this process is an iterative loop, continuing until the information collected is established for analysis. Figure 3 illustrates an example conversation in which can be appreciated how the agent scopes the user’s business. 
  • Messages evaluation: The purpose of the agent in this node is to actively guide the conversation, ensuring alignment with topics amenable to quantum computing or quantum-inspired solutions. It employs conditional logic to steer the dialogue towards quantifiable problems, such as optimization, simulation, or machine learning challenges, and is programmed to conclude interviews that diverge from these domains.
  • Brief Generation: The stage culminates in a structured “Conversation Summary,” a formalized document that serves as the input for the subsequent stage.

Stage 2: The Generator – Generation of Quantum Computing Use Cases

With a clearly defined scope, the Generator agent synthesizes this information to propose initial solutions.

  • Interview Evaluation: In this node the agent analyses the Conversation Summary input to confirm the feasibility of applying quantum computational methods. This acts as a first validation gate before generating the quantum use cases. 
  • Quantum Computing Use Cases Generation: A “Quantum Expert” LLM then synthesizes the user’s business information with its knowledge base of quantum computing algorithms. It generates a preliminary list of use cases, mapping business problems like logistics optimization to algorithms such as the Quantum Approximate Optimization Algorithm (QAOA) or Variational Quantum Eigensolver (VQE), or material science simulations to quantum chemistry algorithms.

Stage 3: Deep Research – Autonomous, Multi-Agent Feasibility Analysis

This final stage is the centerpiece of our system: a parallelized AI multi-agent architecture, inspired by the open Deep Research architecture [8], which conducts a rigorous academic and technical investigation for each proposed use case. Its purpose is to assess the feasibility of applying quantum computing and quantum-inspired algorithms to the user’s business. This serves as a second validation gate before producing scientifically grounded quantum computing use cases.

Parallel deep research workflow using LangGraph and multi-agent AI

Figure 4. Parallel Deep Research

The parallel procedure is illustrated in Figure 4. We apply the map-reduce design pattern to branch the workflow, enabling parallel execution for each use case. The Generator agent forwards the list of use cases to the next subgraph using LangGraph’s Send object. For each use case, a specialized agent is instantiated, allowing research tasks to be carried out independently, and more efficiently, at the same time.

We apply context engineering [9] in different procedures to extract key information, keep relevant content and sources, and compress research results. We followed established guidelines for model families such as GPT-4.1[10], ensuring more effective use of the model’s capabilities. During this procedure we also applied structured outputs to maintain clear and structured data in the flow execution of the nodes. 

As seen in the third block of Figure 1, the process begins with the Deep Research Loop:

  1. The Interviewer: This new LLM interviewer acts as a Socratic inquisitor. Based on the proposed use case (e.g., “Portfolio Optimization using Quantum Annealing”) and the user’s context (e.g., a financial services firm concerned with volatility), it formulates precise research questions. For example: “What is the latest research on the performance of D-Wave’s annealers for QUBO problems with constraints similar to our user’s portfolio?”
  2. The Quantum Computing Expert: This agent takes the questions and queries both internal and external knowledge sources. To ensure the LLMs correctly understood their roles during the interview, we applied persona prompting. Specifically, we defined two personas: an Interviewer persona, as described in the previous section, and a Quantum Expert persona, which responds to all questions using the information retrieved by the tools.
  3. Database and Tools: The query is forwarded to a specialized vector database populated with embeddings derived from hundreds of recent arXiv preprints, peer-reviewed journal articles, and quantum algorithm literature. To enable this, we employ a RAG pipeline, leveraging dense vector indexes in Pinecone that support high-dimensional semantic similarity search. In parallel, the agent integrates external tools such as Tavily to perform live web searches, ensuring access to the most up-to-date scientific studies and complementing the static knowledge base with real-time information.
  4. Source Evaluation: An evaluation layer filters the retrieved sources by the quantum computing expert, ranking them based on relevance to the Interviewer query, and applicability to the user’s specific industry. Irrelevant or sources are discarded.

This loop iterates, refining the search and building a rich corpus of relevant knowledge.

Sample feasibility report for quantum computing business application

Figure 5. Example of generated use cases and feasibility reports.

  • Deep Research Evaluation. At the end of the loop, the AI multi-agent system conducts a final review, examining the collected evidence and determining the feasibility of applying the quantum use cases to the user’s business. The review applies constraint checks (e.g., data availability, problem size, hardware/runtime requirements, regulatory limits), compares against baselines, and outputs a confidence-weighted verdict. Few-shot prompting is employed to guide the evaluator by providing contrasting examples of feasible and non-feasible cases, ensuring more consistent and accurate judgments.
  • Report Writing: The process culminates in a comprehensive feasibility report (see an example in Figure 5). This is not a simple summary but a structured scientific document containing:
    • Scientific and Mathematical Basis: A brief mathematical description of the quantum computing algorithms used for the use case proposed.
    • Limitations and Risks: A clear-eyed view of current hardware limitations, algorithmic noise, and implementation challenges.
    • Conclusion: A final verdict on the feasibility and potential benefits for the user’s business.
    • Scientific Evidence and Literature Review: A curated list of supporting studies with citations.

Our tool is designed to be more than a simple tool generator; it is an automated quantum computing research assistant that empowers organizations to make informed, data-driven decisions about their entry into the quantum computing landscape.

What´s next?

We are still cooking …

At QCentroid, we have the goal of accelerating the large-scale adoption of quantum computing. We’ve got several planned and in-progress features to achieve this end-to-end workflow: from defining a use case to developing it into test-ready code. You’ll start with a simple conversation and end with a working experimental prototype, supported by tools such as a mathematical problem-definition generator, a data generator, and pseudocode-to-code generation—though that’s just the beginning; the rest you’ll have to wait and see.

(HIDDEN)

We invite you—whether you’re a scientist, a business leader, a developer,  or simply curious—to explore our tool’s capabilities and join us in refining the bridge between the quantum and classical worlds. Discover its potential now

References

[1] “quantum-monitor-2025.pdf.” Accessed: Sep. 25, 2025. [Online]. Available: https://www.mckinsey.com/~/media/mckinsey/business%20functions/mckinsey%20digital/our%20insights/the%20year%20of%20quantum%20from%20concept%20to%20reality%20in%202025/quantum-monitor-2025.pdf 

[2] “quantum-technology-monitor-april-2023.pdf.” Accessed: Sep. 25, 2025. [Online]. Available: https://www.mckinsey.com/~/media/mckinsey/business%20functions/mckinsey%20digital/our%20insights/quantum%20technology%20sees%20record%20investments%20progress%20on%20talent%20gap/quantum-technology-monitor-april-2023.pdf?utm_source=chatgpt.com 

[3] N. Mousa and F. Shirazi, “A survey analysis of quantum computing adoption and the paradigm of privacy engineering,” SECURITY AND PRIVACY, vol. 7, no. 6, p. e419, 2024, doi: 10.1002/spy2.419. 

[4] J. Wei et al., “Chain-of-Thought Prompting Elicits Reasoning in Large Language Models,” Jan. 10, 2023, arXiv: arXiv:2201.11903. doi: 10.48550/arXiv.2201.11903. 

[5] J. Kaplan et al., “Scaling Laws for Neural Language Models,” Jan. 23, 2020, arXiv: arXiv:2001.08361. doi: 10.48550/arXiv.2001.08361. 

[6] “The rise of ‘context engineering,’” LangChain Blog. Accessed: Aug. 28, 2025. [Online]. Available: https://blog.langchain.com/the-rise-of-context-engineering/ 

[7] P. Lewis et al., “Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks,” in Advances in Neural Information Processing Systems, Curran Associates, Inc., 2020, pp. 9459–9474. Accessed: Sep. 04, 2025. [Online]. Available: https://proceedings.neurips.cc/paper/2020/hash/6b493230205f780e1bc26945df7481e5-Abstract.html 

[8] “Open Deep Research,” LangChain Blog. Accessed: Aug. 21, 2025. [Online]. Available: https://blog.langchain.com/open-deep-research/ 

[9] “Context Engineering,” LangChain Blog. Accessed: Aug. 21, 2025. [Online]. Available: https://blog.langchain.com/context-engineering-for-agents/ 

[10] “GPT-4.1 Prompting Guide | OpenAI Cookbook.” Accessed: Aug. 21, 2025. [Online]. Available: https://cookbook.openai.com/examples/gpt4-1_prompting_guide 

Accelerating Quantum Readiness: QCentroid & QAI Ventures

Singapore Quantum Hackathon QAI Ventures

From Idea to Proof of Concept (PoC) in 48 Hours at

Over the past few months, QCentroid has proudly partnered with QAI Ventures to power the GenQ Global Hackathon Series. Across three high-energy events in Calgary (Energy), Geneva (Life Sciences), and Singapore (Finance), we witnessed a glimpse of the future of industry-specific AI and Quantum solutions.

These global sprints brought together hundreds of the world’s brightest students to tackle real-world complexities – from Counterparty Credit Risk and Fraud Detection to advanced Life Sciences case studies – all compressed into intense 48-hour development windows.

Why QCentroid? The Readiness Accelerator

In a 48-hour sprint, tools are either critical enablers or fatal distractions. While many companies talk about “Quantum Operations,” we know that for today’s market, the real challenge is Readiness. The success of the GenQ series hinged on one core element: eliminating the technical friction that usually stalls innovation.

Zero-Friction Onboarding: Ending Quantum Computing “Dependency Hell”

In a time-compressed environment, losing hours to environment setup is a project-killer. Our platform provided a genuine “login-and-code” experience. By pre-configuring complex quantum SDKs and environments, we ensured that participants spent zero minutes on troubleshooting and 100% of their time on solving the problem.

Enterprise-Grade Stability at Scale

Supporting three distinct, high-intensity sprints globally served as more than just a collaboration—it was an Enterprise Hardening exercise. By maintaining a seamless infrastructure across North America, Europe, and Asia, we proved that the QCentroid environment is ready for the most demanding corporate “sandboxes,” ensuring identical conditions for every team, regardless of location.

The Universal Adapter for Hybrid Workflows

QuantumOps served as a neutral gateway. Teams accessed five different hardware providers throughout the tour—IonQ, Microsoft, Quantinuum, QuEra, and IQM—allowing them to rapidly iterate and benchmark solutions and quantum algorythms across the world’s leading quantum backends within a single interface.

Key Capabilities: Empowering the Business-First Journey

The students’ success was directly linked to the features that bridge the gap between business logic and technical execution:

  • The Power of the Launchpad: Participants overwhelmingly chose our built-in coding environment over external IDEs. This confirms that an integrated, low-friction workspace is the fastest route to a working prototype.
  • The Readiness Catalog: To accelerate prototyping, students leveraged a pre-loaded catalog of solvers and templates. This “Quantum Program Builder” approach allowed teams to start with a foundation rather than a blank page.

The Numbers: Impact at Scale

The data confirms the velocity achievable when you remove technical barriers:

  • Global Reach: 3 Continents (North America, Europe, Asia).
  • 100% PoC Velocity: Every single winning team successfully deployed a working Proof of Concept (PoC) on the platform within the 48-hour window.

Looking Ahead: Your Roadmap to Quantum Readiness

While supporting emerging talent is rewarding, these hackathons served as a crucial stress test for our platform. The insights gained from these high-pressure environments have directly informed our roadmap, hardening our connectors (including our latest IQM integrations) and refining our “Business-First” agentic flows.

The platform that can reliably support global, high-intensity hackathons is ready for your enterprise challenges.

Is your organization ready to move from “Quantum Hype” to “Quantum Ready”? Contact us today to see how QCentroid can accelerate your transition from a business idea to an industry solution.

QuIC’s Recommendations for Europe’s Quantum Strategy: What It Means for Business (And Why You Should Care)

The European Quantum Industry Consortium (QuIC) has just published its recommendations for the EU’s Quantum Strategy, a document packed with insights, warnings, and, most importantly, opportunities. Carlos Kuchkovsky, CEO of QCentroid, has been one of the key contributors to this work, leveraging his experience as the former Head of Innovation at BBVA, as well as leading the work of the European Quantum Flagship on benchmarking and standardization. As he puts it in the recommendations, addressing organizations across Europe:

The challenge isn’t whether Quantum Computing will be relevant, but how fast companies can adapt.

But before you assume this is just another policy paper, slow down and take a look at our breakdown because details matter at this time. If you’re leading a company in finance, healthcare, logistics, or any data-heavy industry, what happens in quantum doesn’t stay in quantum. It’s about to change the way you do business.

Key Takeaways from the QuIC Report: What Matters for Business?

1. QuIC Recommends Europe Build Its Own Full-Stack Quantum Computer (Because Who Likes Dependencies?)

QuIC advises Europe to push for a “Made in Europe” quantum stack—hardware, software, and everything in between. The goal? Less reliance on non-European tech, more strategic independence.

Why you should care: Right now, quantum computing breakthroughs often come from the US, China, or Australia, for example. A strong European ecosystem means local businesses get better access, potentially with government-backed incentives. If you’re in an industry that needs high-powered computation (finance, logistics, pharmaceuticals), this is good news.

2. A Stronger Quantum Supply Chain (So We Don’t Have Another Chip Crisis, But With Qubits)

QuIC stresses the need for Europe to strengthen its quantum supply chain—funding research, securing raw materials, and creating a resilient network.

Why you should care: A stable supply chain means fewer bottlenecks when your business is ready to experiment with quantum solutions. It also means better pricing and competitive access to quantum hardware, reducing reliance on non-EU providers.

3. Making Europe a Quantum Investment Hotspot (Translation: Money Talks, Let’s Keep It Here)

QuIC’s recommendation? More incentives, better funding models, and smoother regulations to make Europe a more attractive place for quantum startups and investors.

Why you should care: If you’re considering dipping your toes into quantum, either through partnerships or direct investment, Europe is working on making it easier and more lucrative. Expect more accelerators, funding pools, and potential tax benefits.

4. Quantum Standards & Benchmarks (Because Right Now, It’s a Bit of a Wild West)

Quantum computing today is like the early days of AI—everyone’s hyped, but there’s little standardization. Europe wants to lead the way in setting benchmarks for performance, security, and interoperability.

Why you should care: If your company is considering quantum tech, clear standards will help you compare solutions apples-to-apples rather than trying to decode marketing jargon from different vendors. It also makes integration with existing IT infrastructure smoother. An insider tip: you can already compare many of the quantum solutions from various providers head-to-head with the QCentroid platform. 

5. Turning Intellectual Property into Revenue (Instead of Just Cool Science)

Europe has world-class quantum research but has historically lagged in commercialization. The strategy aims to change that by improving how quantum intellectual property (IP) is protected and monetized. QuIC recommends that Europe focus on better protecting and commercializing quantum intellectual property.

Why you should care: More structured IP policies mean that investing in quantum won’t just be for big tech players. Mid-sized enterprises and even non-tech companies can find commercial angles, whether through licensing, collaborations, or applied research projects.

6. Building a Quantum Workforce (Because Someone Has to Understand This Stuff)

QuIC calls for major investment in education, training, and reskilling initiatives to ensure Europe has enough quantum-literate professionals—not just scientists, but also business leaders who know how to implement the tech.

Why you should care: Finding skilled quantum professionals today is like trying to hire blockchain developers in 2015—difficult and expensive. A structured workforce plan means better talent pipelines for businesses wanting to explore quantum applications.

7. Keeping European Quantum Independent (So We Don’t Have to Beg for Access Later)

Security is a major concern. QuIC emphasizes the need for European control over critical quantum technologies, especially cloud-based quantum services, whether in banking, defense, or healthcare.

Why you should care: If your business handles sensitive data, future EU regulations might favor quantum solutions developed and hosted within Europe. Getting ahead of compliance now could save you a lot of headaches later.

8. Quantum for Sustainability & Social Good (Not Just for Science Fiction Plots)

QuIC recommends that quantum support broader sustainability goals—both environmental and social. This includes promoting responsible innovation, supporting green quantum tech, and aligning with the UN Sustainable Development Goals.

Why you should care:  As ESG reporting gets more serious, quantum applications in climate modeling, sustainable supply chains, and green energy could unlock real efficiencies and regulatory advantages. Plus, inclusive frameworks mean a more diverse future talent pool—and better optics for your brand.


Final Thoughts: What Should Businesses Do Now?

  1. Start preparing for quantum computing. You don’t need a quantum team yet, but understanding potential applications in your industry will prepare you for the next step.
  2. Keep an eye on EU funding and incentives. There is money available to support early adoption.
  3. Consider partnerships. Why take all the risks and a budget hit going it alone? Join forces with one or more quantum teams at startups and vendors and share the burden. You help them advance, they help you get answers you need. 

If you’re curious about how quantum computing could impact your business, now is the time to start paying attention.

Want to dive deeper? Read the full QuIC recommendations here and book a demo with our team.

QCentroid Announces the Quantum Computing Readiness Assessment Tool at MWC

QCentroid Announces the Quantum Computing Readiness Assessment Tool at MWC

QCentroid is excited to unveil our Quantum Computing Readiness Assessment Tool at this year’s Mobile World Congress (MWC). As quantum computing progresses, businesses across various industries seek to understand how to utilize this groundbreaking technology. Our new tool is designed to provide companies with a clear and actionable assessment of their readiness to adopt quantum computing solutions.

The Quantum Computing Readiness Assessment Tool is an intuitive, data-driven platform that enables organizations to assess their current capabilities, identify key areas for development, and receive tailored recommendations on how to integrate quantum computing into their operations. Whether your company is new to quantum technology or already exploring potential applications, this tool will provide valuable insights to help you take the next steps toward quantum adoption.

In addition to this tool, QCentroid is also introducing two other powerful resources that are included in the QCentroid Platform to help businesses navigate the quantum landscape.

The Use Cases and Strategy Generator helps companies identify the most relevant quantum computing applications for their industry and build a roadmap for adoption.

And the Use Cases Solutions Explorer, designed to provide an in-depth analysis of real-world quantum solutions, helping businesses understand how quantum computing can solve their specific challenges.

At MWC, visitors will have the opportunity to see a preview of these tools in action, interact with our experts, and learn how quantum computing can enhance business strategies, optimize complex processes, and unlock new opportunities. Our team will be available to discuss industry-specific use cases and how QCentroid’s solutions can help businesses navigate the quantum revolution.

We invite all attendees to visit our stand at MWC to explore the Quantum Computing Readiness Assessment Tool firsthand. Don’t miss this chance to evaluate your company’s quantum potential and discover how QCentroid can support your journey into the future of computing.

Join us at MWC and take the first step toward quantum advantage!

QCentroid Contributes to Industry Priorities at Q-Expo 2024

  • Gregory Shutko, QCentroid’s Chief Business Officer, participated in Q-Expo 2024, a premier European event for the quantum industry.
  • Gregory took part in the closed-door industry deliberations, contributing to defining the priorities for the industry for the coming year.
  • QCentroid, as a full member of the European Quantum Industry Consortium (QuIC), is a leading EU platform focused on quantum applications and ecosystem building to accelerate quantum adoption.
Gregory Shutko

What is Q-Expo and Why It Matters

Organized by QuIC and Quantum Delta NL, Q-Expo is a leading European event for the quantum technology industry. This year’s edition brought together key players from the quantum ecosystem, including researchers, startups, established companies, investors, and policymakers. Q-Expo provided a platform for showcasing the latest advancements, fostering collaborations, and discussing the future of quantum technologies. The event featured a mix of plenary sessions, technical presentations, and networking opportunities, creating a vibrant atmosphere for knowledge sharing and partnership building.

QCentroid at Q-Expo 2024

Gregory Shutko joined the discussions on the second day, including sessions with Olivier Ezratty, Roger McKinlay, Olivier Tonneau, and Anca Albu. And on the third day, Gregory helped to shape the future of the European quantum landscape by participating in closed-door industry discussions that defined QuIC’s priorities for the upcoming year. 

As a leader in QuIC’s working groups on quantum applications and ecosystem development, QCentroid, through Gregory’s contributions, shared valuable experience in identifying promising use cases, understanding customer needs, and fostering the growth of a strong quantum ecosystem.

Key Insights from the Event

  • Early Quantum Engagement: “Management by fear” remains a prevalent strategy for engaging customers in early-stage quantum adoption, often coupled with a focus on the “indirect” value of quantum technologies.
  • Energy Efficiency: Energy efficiency emerged as one of the six key industry challenges, highlighting the potential of quantum computing to optimize energy consumption.
  • Consolidation in the Industry: Experts predict an upcoming consolidation in both quantum software and hardware, potentially leading to a more streamlined and mature market.
  • Building Quantum Awareness: International organizations like the OECD are contributing to raising awareness of quantum technologies among policymakers.
  • Customer Focus: The industry needs customers, not just end users, emphasizing the need for feedback and co-development partnerships.
  • Funding Priorities: In the quantum sector, keeping costs under control and leveraging public funding are more critical than traditional metrics like IRR or user base.
  • Bridging the Language Gap: A gap exists between the technical language of the quantum industry and the business language of potential customers, requiring a translation to “what’s in it for me.”
  • Global Collaboration: Quantum industry associations like QED-C, Q-STAR, QIC, and QuIC are collaborating, signaling a need for a unified approach that transcends national boundaries and export controls.
  • Australia’s Bet: Informal discussions at the event centered around Australia’s (a G20 country) focused investment in a specific quantum technology, potentially leaving other parts of its domestic industry behind.
  • Merit-Based Cases: The second day of the event featured merit-based case studies from companies like Telefónica, Equinix, Port of Rotterdam, Deutsche Bahn, E.ON, Airbus, and ParTec AG.
  • Welcoming Event: Q-Expo provided a welcoming and warm environment, with ample opportunities for meetings, deep discussions, and building partnerships.

Looking Ahead

QCentroid remains committed to advancing the quantum ecosystem and driving the adoption of quantum technologies. We are dedicated to working with partners and customers to identify high-impact use cases and build a thriving quantum community. The QuIC is the main European quantum industry association, and for a pan-European quantum platform like QCentroid it is the right place to be to bridge the gap between the industry advances and the end users.

Are you interested in exploring how quantum technologies can benefit your organization? Contact us today to learn how QCentroid can help you navigate the quantum revolution and unlock the potential of next-generation computing.

Follow us on LinkedIn to stay informed about the latest developments in the quantum field and QCentroid’s contributions to this exciting industry.