Integer Relation Among Reals: Difference between revisions

From Algorithm Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 10: Line 10:
== Parameters ==  
== Parameters ==  


n: dimensionality of vectors
$n$: dimensionality of vectors


== Table of Algorithms ==  
== Table of Algorithms ==  
Line 20: Line 20:
|-
|-


| [[HJLS algorithm ( Integer Relation)|HJLS algorithm]] || 1986 || $O(n^{3}(n+k)$) || $O(n^{2})$ -- but requires infinite precision with large n or else it becomes unstable || Exact || Deterministic || [https://epubs.siam.org/doi/pdf/10.1137/0218059 Time]
| [[HJLS algorithm ( Integer Relation)|HJLS algorithm]] || 1986 || $O(n^{3}(n+k))$ || $O(n^{2})$ -- but requires infinite precision with large n or else it becomes unstable || Exact || Deterministic || [https://epubs.siam.org/doi/pdf/10.1137/0218059 Time]
|-
|-
|}
|}

Latest revision as of 09:24, 10 April 2023

Description

Given a vector $x \in \mathbb{R}^n$, find an integer relation, i.e. a non-zero vector $m \in \mathbb{Z}^n$ such that $<x, m> = 0$

Related Problems

Subproblem: Integer Relation Among Integers

Parameters

$n$: dimensionality of vectors

Table of Algorithms

Name Year Time Space Approximation Factor Model Reference
HJLS algorithm 1986 $O(n^{3}(n+k))$ $O(n^{2})$ -- but requires infinite precision with large n or else it becomes unstable Exact Deterministic Time