How do i use the euclidean algorithm to compute the greatest common divisor of two elements in Z[i]?
2026-02-23 06:08:04.1771826884
Greateat common divisor in Z[i]
1.4k Views Asked by user372244 https://math.techqa.club/user/user372244/detail At
1
There are 1 best solutions below
Related Questions in EUCLIDEAN-ALGORITHM
- Euclidean algorithm matrix proof
- Find the coefficients in Euclid's algorithm
- Uniqueness of integers satisfying the Extended Euclidian algorithm
- A small theatre has a student rate of 3 per ticket and a regular rate of 10 per ticket
- derive the eculidean algorithm for calculating gcd(a,b)
- Prove that the following set is a field
- Euclidean Case of the TSP for a given problem.
- If $5x \equiv 15 \pmod{25}$, then definitely $x \equiv 3 \pmod{25}$. Is this true or false?
- Why does the method for division work?
- Finding $2^{-1}\pmod{53}$ via Euclidean algorithm
Related Questions in EUCLIDEAN-DOMAIN
- Ring of remainders definition
- Comparing orders induced by euclidean function and divisibility in euclidean domain
- $\mathbb{Z}[i] / (2+3i)$ has 13 elements
- Dividing one polynomial by another
- If the norm of $\alpha \in \mathbb{Z}[i]$ is a square, show that $\alpha$ is a square in $\mathbb{Z}[i]$
- Are 2x2 matrices on a Euclidean domain a Euclidean domain?
- Showing that $\mathbb{Z}[\phi]$ is a UFD, where $\phi^2+\phi+1=0$.
- Maximizing the Euclidean Distance of a Constrained Sum
- Norm-Euclidean fields
- Showing $(3 + \sqrt{3})$ is not a prime ideal in $\mathbb{Z}[\sqrt{3}]$
Related Questions in ORDERED-RINGS
- If $R$ and $S$ are isomorphic rings, is $R$ an ordered ring iff $S$ is an ordered ring?
- An example of an ordered UFD except the ring of integers?
- Is it possible to send an element in an ordered real algebra both to a positive unit and to a negative unit?
- Is the number of orderings the same of the number of automorphisms in a ring?
- Does an infinite chain contain articulation points?
- Visualize the Completion of (the Ordered Field) of Rational Functions
- Ordered ring and mutiplicative ordinal
- Metric mapping to sets other than $\Bbb{R}$
- Are there any "crazy" totally ordered rings without infinities/infinitesimals?
- Greateat common divisor in Z[i]
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
So, let's find $\gcd(11+17i,1+13i)$. We clearly see that $11+17i$ has the greater norm, so we can start by subtracting from that. What multiple should we subtract? We could figure that out by division (which, admittedly, is some work), but we see geometrically (which is much easier that division, and while not optimal, more than good enough) that since $11+17i$ is somewhere below the $45^\circ$ line, and $1+13i$ is close to the imaginary axis, $(1-i)$ shouldn't be too far off: $$ \gcd(11+17i,1+13i)=\gcd(11+17i-(1-i)(1+13i),1+13i)\\ =\gcd(-3+5i,1+13i)\\=\gcd(5+3i,1+13i) $$ where I've used that $\gcd(a,b)=\gcd(-ia,b)$. This time, $1+13i$ has the largest norm, so we find a multiple of $5+3i$ which is close to it. This time we want to turn $5+3i$ a bit more than $45^\circ$. Also, $1^2+13^2=170=5\cdot34=5\cdot(5^2+3^2)$ means that $1+2i$ is pretty good (since $1+2^2=5$): $$ \gcd(5+3i,1+13i)=\gcd(5+3i,1+13i-(1+2i)(5+3i))\\ =\gcd(5+3i,2) $$ Now we can finish directly: $$ =\gcd(5+3i-(2+2i)\cdot2,2)\\ =\gcd(1-i,2)\\ =\gcd(1-i,2-(1+i)(1-i))\\ =\gcd(1-i,0)=1-i $$