MethodLayer 1
Chebyshev spectral method, global collocation
The route that brought precision to linear ODEs with **time-dependent** coefficients, which is what its abstract says was missing: "no such algorithm was previously known for differential equations with time-dependent coefficients". It does it by not stepping. The solution is approximated globally by a truncated Chebyshev series, the coefficients are fixed by collocating the differential equation at Chebyshev nodes, and the resulting sparse system goes to a high-precision quantum linear system algorithm. The exponential precision is bought by smoothness rather than by the solver: it is the convergence of the Chebyshev series that makes the series length logarithmic in .
A block-encoding of with a normalization , preparation unitaries for and , the evolution time , and an error tolerance .
A state proportional to , or a history state, together with separately stated matrix-query and initial-state-query complexity.
Same contract as the slot it fills.
This one, drawn
From Linear ODE system to Answer about the solution
A circle is an object you are holding. This method is drawn heavier, opened into its own steps; the other lines between the same two ends are the alternatives recorded for the same slot. Circles are named on hover, and each one is a link.
8 lines here have ways through that this figure does not open. The map opens them in place. See it on the map
What it fills
- Solve a linear ODE du/dt = A(t)u + b(t)
Given block-encoding access to and and a preparation unitary for , output a normalized state -close to . Matrix-query and state-preparation-query counts are stated separately, because methods here differ in them independently.
When it applies
**Problem 1** fixes the access model and one smoothness assumption before any theorem runs: is -sparse for every , and "we assume that for all ". Everything is reached through oracles — one computing "the locations and values of the nonzero entries of " in a given row or column, and oracles preparing and that "also compute and " — and the deliverable is a quantum state, "a quantum state -close to ", never an explicit vector. **Theorem 1** adds the spectral hypothesis: " can be diagonalized as where with for each and ". The paper gives the reason and the comparison in one breath: the non-positive real parts are required "so that the solution cannot grow exponentially", and this "is essentially the same as in the time-independent case considered in [10] and improves upon the analogous condition in [5] (which requires an additional stability condition)" — [5] being Berry's multistep route on this same slot, whose -stability is the extra condition being improved upon. **The hypothesis the abstract does not carry is smoothness of the solution, and the headline rests on it.** Section 2: "if the solution is in , the spectral method approximates the solution to within using only terms in the Chebyshev series", whereas "for a solution in , the spectral method approximates the solution with ". The Discussion lists it as an open problem rather than a technicality: "our algorithm must assume that the solution is smooth. If the solution is in , the solution error is by Lemma 1. Can we improve the complexity to under such weaker smoothness assumptions?" Diagonalisability is the softer of the two hypotheses and the paper says so: "our algorithm can produce approximate solutions for non-diagonalizable , although the dependence on degrades to ".
Requires
Every step this method names moves its route along, so there is nothing it needs alongside them.
Example
Read in full: arXiv:1901.00961, the only paper this record cites, reports no run of the method. There is no figure, no table, no computed value, no dataset, no simulator and no hardware anywhere in it — the word "simulation" occurs only in the sense of Hamiltonian simulation and in reference titles. Its ten sections are a construction and its analysis end to end: the spectral method, the linear system, the solution error, the condition number, the success probability, state preparation, the main result and the boundary value problem. Appendix B, "An example of the quantum spectral method", is a structural display and not a run — , , , , with , and left symbolic. So there is no run to transcribe here, and no nearby numerics to point at instead.
given oracles for A(t) (s-sparse), f(t), gamma; horizon T; error budget e
choose m so that ||A||*T / (2*m) <= 1
# NOT an accuracy choice. Rescaling [0,T] onto [-1,1] sends A -> -(T/2)A,
# which 'can dramatically increase the spectral norm'; subdividing avoids it
divide [0,T] into [0,G_1], [G_1,G_2], ... , [G_{m-1},T]
map each [G_h, G_{h+1}] onto [-1,1] by K_h, with K_h(G_h)=1, K_h(G_{h+1})=-1
choose the series length n from Eq. (8.6)
n = (e/2) * max( floor(log(Omega)/log(log(Omega))),
floor(log(omega)/log(log(omega))) )
Omega = g'*e*m*(1+eps)/(g*eps), omega = (g'/||gamma||)*(m+1)
# poly-logarithmic in 1/eps only because the solution is assumed C^infinity
for each subinterval, hand the layer above's collocation to this one:
build the rows of (L_1 + L_2(A_h)) |X> = |B_h>
L_3 carries the coefficients c_{i,l}(G_{h+1}) into the next block
as its initial condition
assemble one system L |X> = |B> # Eq. (3.12)
L is (m+p+1)*d*(n+1) square, with O(n*s) nonzeros per row
pad the final state p = O(m) = O(||A||*T) times via L_4, L_5
hand L |X> = |B> to the layer below # the high-precision QLSA
measure the first and third registers
keep outcomes in S = {m, m+1, ... , m+p}
# success probability (p+1)(n+1) / (pi*m*q^2 + (p+1)(n+1)) by Lemma 5
amplitude-amplify O(q/sqrt(n)) times to reach success probability Omega(1)
return the second register: a state e-close to x(T)/||x(T)||Cost, as the source states it
**Theorem 1**, the main result: queries to the oracles , and , with a gate complexity "larger than the query complexity by a factor of ". Eq. (8.2) names every parameter rather than leaving them to a reader: ; , where is the condition number of the eigenvector matrix ; ; ; and . **Corollary 1** specialises to time-independent equations, replacing by : . **The boundary value problem is much worse in the horizon** — Theorem 2 gives , a fourth power where the initial value problem has a first. Two of these parameters carry the paper's own warnings and neither is decoration. Of : "in general, could be unbounded above as ", and removing it is left open — "the query complexity of Hamiltonian simulation is independent of that parameter. Can we develop quantum algorithms for general differential equations with query complexity independent of ?" Of , which "characterizes the decay of the final state relative to the initial state": "it is unlikely that the dependence on can be significantly improved, since renormalization of the state effectively implements postselection and an efficient procedure for performing this would have the unlikely consequence ". The horizon dependence, by contrast, is close to the floor: "our algorithm has nearly optimal dependence on , scaling as ", against the no-fast-forwarding bound that "the complexity must be at least linear in ".
Implementations
The global Chebyshev linear system $L|X\rangle = |B\rangle$ (sections 2 and 3)
Why a global approximation, in the paper's own order. Section 1 sets out the obstacle first: "most of the aforementioned algorithms use a local approximation: they discretize the differential equations into small time intervals", and even at high order "when solving an equation over the interval , the number of iterations is for fixed , giving a total complexity that is even using high-precision methods for the QLSA or Hamiltonian simulation". Two escapes already existed and both need structure the general case does not have: "when is anti-Hermitian and , we can directly apply Hamiltonian simulation; if and are time-independent, then [10] uses a Taylor series to achieve complexity . However, the case of general time-dependent linear ODEs had remained elusive." Section 2's answer is the one this record is about: represent the components "as linear combinations of basis functions expressing the time dependence", so that no step count stands between the horizon and the error.
The approximation is Eq. (2.1), , and the coefficients "are determined by demanding that satisfies the ODE and initial conditions at a set of interpolation nodes (with ), where and are the initial and final states" — Eq. (2.2) and Eq. (2.3). The nodes are Chebyshev-Gauss-Lobatto, , "since these nodes achieve the highest convergence rate among all schemes with the same number of nodes", and because "these nodes also have the convenient property that ". Differentiation stays inside the basis: from comes the upper-triangular matrix of Eq. (2.8), for odd and , with and otherwise, giving Eq. (2.10). Section 3 assembles this into , Eq. (3.12), over rescaled subintervals with initial conditions chained by , and pads the final state times through and so the readout succeeds with constant probability. **The subdivision is the part most easily mistaken for a step count.** It is not chosen against the error budget at all: rescaling onto sends , "which can dramatically increase the spectral norm", so the subintervals are sized by Eq. (3.8), . The error is controlled by , and is logarithmic in by Lemma 2.
No dataset and no instantiated matrix. , and stay symbolic throughout and are reached only through oracles, exactly as on `berry-multistep`. The sole concrete display is Appendix B, "An example of the quantum spectral method", which fixes , , and and writes out the resulting block structure of — drawn to make that structure legible, with and still symbolic and no value computed. The quantitative choices the construction itself fixes are the node set , the subinterval bound , and .
What it needs
- Choose a time discretization or propagator approximation 6 methods
Reduce continuous evolution over to a finite algebraic object — a banded linear system, a product of step propagators, or a spectral coefficient system — with a stated truncation error. When a linear system is formed, a conditioning bound is stated with it.
- Quantum linear solve 5 methods
Given access to a matrix and a unitary that prepares , produce a flagged quantum state that is -close in to the normalised . The deliverable is a state, not a classical vector.
Other ways to fill the same slot
Different approaches
- Linear multistep method, all-at-once encoding
The first quantum algorithm for general linear ODEs. Discretize with a high-order linear multistep method, lay every time step out at once against a clock register so that one state holds the whole history, and solve the resulting sparse linear system with a quantum linear system algorithm. Going high-order is what buys the scaling: plain Euler costs at least here.
- Taylor propagator, all-at-once encoding
Encode a truncated Taylor series of the propagator into a single sparse linear system approximating the whole evolution, then solve it with a quantum linear system algorithm. This is what brought the precision dependence down to polynomial in .
- Krovi's reanalysis of the all-at-once encoding a narrower version of Taylor propagator, all-at-once encoding
Reanalyses the all-at-once propagator encoding and shows that the norm of the matrix exponential, rather than the eigenvector condition number, characterizes the run time. It still forms a global linear system and still calls a quantum linear solver.
- Dyson propagator, all-at-once encoding
Encode the Dyson series in a system of linear equations and solve it via the optimal quantum linear equation solver, extending the all-at-once approach to genuinely time-dependent generators.
- Time-marching with uniform singular value amplification
Propagate the solution one step at a time and defeat the exponentially vanishing success probability by repeatedly invoking uniform singular value amplification, improved further by a compression gadget lemma. Fang, Lin and Tong present it explicitly as a design path alternative to solvers based on quantum linear systems algorithms.
- LCHS — linear combination of Hamiltonian simulation
Express a general non-unitary evolution operator as a linear combination of unitary evolution operators, each of which solves a Hamiltonian simulation problem, rather than converting the problem into a dilated linear system. An, Liu and Lin state that the method can achieve optimal cost in terms of state preparation.
- LCHS with the improved kernel a narrower version of LCHS — linear combination of Hamiltonian simulation
A family of identities expressing non-unitary evolution as a linear combination of unitary evolutions, built on the kernel with and . The kernel decays at a near-exponential rate , replacing the original Cauchy kernel's quadratic decay and exponentially enhancing accuracy.
- Schrödingerisation (linear PDEs as Schrödinger equations)
A simple change of variable — the warped phase transformation, which introduces one extra variable — recasts any linear PDE or ODE system into a system of Schrödinger equations in real time, which ordinary Hamiltonian simulation then runs. The original solution is recovered from the auxiliary dimension.
In the Atlas
No record in the Atlas covers this yet. The catalogue is circuits and primitives; this part of the literature is not in it.