Questions tagged [space-complexity]

Space complexity describes the amount of memory space required by a deterministic Turing machine to solve a given computational problem with a certain algorithm. If necessary, also use the [memory-space] tag.

6 questions
6
votes
1 answer

Can we use quantum machines to reduce space complexity of deterministic turing machines?

Can we convert every algorithm in $\text{P}$ (polynomial time complexity for deterministic machines) into a quantum algorithm with polynomial time and $O(\log n)$ quantum bit?
3
votes
1 answer

Is there a polynomial quantum algorithm for graph coloring?

Is there a polynomial time and polynomial space quantum algorithm for finding a 4 colouring of any loopless planar graph?
3
votes
1 answer

Expressing a quantum state as a polynomial

Let us consider the state $\left|\psi\right>$ obtained by applying $m$ 1- and 2-qubit gates to $n$ qubits, starting from the state $\left|0,0,\dots\right>$. Let us express it as: $$ \left|\psi\right> = \sum_{b_1, b_2, \dots} f(b_1, b_2, \dots)…
Doriano Brogioli
  • 511
  • 2
  • 15
2
votes
0 answers

What is the cost of implementing the Quantum Fourier transform in a classical computer?

What is the cost of implementing the Quantum Fourier transform (QFT) in a classical computer? We know we require at least $\log{n}$ depth quantum circuits to do a QFT in a quantum computer, with $n$ being the number of input qubits. Is there a…
1
vote
1 answer

Why does entanglement complicate quantum simulation?

To model a single qubit one would need enough memory for $2$ complex numbers. If we have an $N$ qubit system, we would have to store $2N$ complex numbers. The general statement is that to store an $N$-qubit system, one would require memory for $2^N$…
0
votes
1 answer

How many real numbers are required to describe density matrix for $n$ qubits?

(All of these coming from the topic of simulation of quantum systems) A density matrix $\rho$ Which describe state of $n$ qubits will have $2^{n} \times 2^{n}$ size. We have couple of conditions like $\mathrm{tr}(\rho) = 1$ $\rho$ is…