In the case I have two numbers large enough to justify using scientific notation twice $A \times 10^{B \times 10^C}$ or $Ae+Be+C$ How would I calculate Modulo without taking the numbers or any part of them out of scientific notation?
2026-03-26 06:19:49.1774505989
calculating Modulus on Massive numbers
117 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in MODULAR-ARITHMETIC
- How do I find the least x that satisfies this congruence properties?
- Counting the number of solutions of the congruence $x^k\equiv h$ (mod q)
- Remainder of $22!$ upon division with $23$?
- Does increasing the modulo decrease collisions?
- Congruence equation ...
- Reducing products in modular arithmetic
- Product of sums of all subsets mod $k$?
- Lack of clarity over modular arithmetic notation
- How to prove infinitely many integer triples $x,y,z$ such that $x^2 + y^2 + z^2$ is divisible by $(x + y +z)$
- Can $\mathbb{Z}_2$ be constructed as the closure of $4\mathbb{Z}+1$?
Related Questions in BIG-NUMBERS
- What is $\underbrace{2018^{2018^{2018^{\mathstrut^{.^{.^{.^{2018}}}}}}}}_{p\,\text{times}}\pmod p$ where $p$ is an odd prime?
- Super-fast growing function exceeding Graham's number
- Is it true that $\underbrace{x^{x^{x^{.^{.^{.^x}}}}}}_{k\,\text{times}}\pmod9$ has period $18$ and can never take the values $3$ and $6$?
- Graham's Number on the Next Layer And TREE(3)
- Is there any function that like this function?
- Where does this array-based fast-growing function fall in the fast-growing hierarchy, and how does it compare to TREE(n)?
- There is a way to write TREE(3) via $F^a(n)$?
- (a / b) mod p for large a and b
- Sum of digits of sum of digits of sum of digits of $7^{7^{7^7}}$
- When does the busy beaver function surpass TREE(n)?
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?
Thing is, powers are cycle under modular arithmetic.
Find out what power it takes for $10$ to cyclic through and take $B\times 10^C$ modulo that. ANd to do that you might need know what power modulo that is cycle modulo that.
For example to figure $58\times 10^{97\times 10^{43}}\pmod {63}$ ... (something I made up out of the top of my head). $10$ and $63$ are relatively prime. $\phi(63)=\phi 7\phi 9=6*6=36$ so $10^{36} \equiv 1\pmod{63}$ and
$58\times 10^{97\times 10^{43}} \equiv (-5)\times 10^{97 \times 10^{43}\pmod {36}}\pmod {63}\equiv (-5)\times 10^{25 \times 10^{43}\pmod {36}}\pmod {63}$
Now to figure out $10^{43}\pmod {36}$ $10$ and $36$ are relatively prime so I'll have to use chinese remainder theorem.
$10^{43}=2^{43}5^{43} \equiv 0 \pmod 4$
And $10^{43} \equiv 1^{43}\equiv 1 \pmod 9$ so $10^{43} \equiv 28\pmod {36}$ and
$58\times 10^{97\times 10^{43}}\equiv (-5)\times 10^{25 \times 28\pmod {36}}\pmod {63}\equiv$
$(-5)\times 10^{-11\cdot -8\pmod{36}} \equiv $
$(-5)\times 10^{88 \pmod{36}} \equiv $
$(-5)\times 10^{16}\pmod{63}$.
Okay $10^{16}$ is still pretty large. We can use CRT again.
$10^{16} \equiv 1 \pmod 9$ and $10^{16}\equiv 3^{16} \equiv (3^6)^2*3^4 \equiv 3^4 \equiv 9^2\equiv 2^2 \equiv 4 \pmod 7$ so $10^{16}\equiv 46 \pmod {63}$
So $(-5)\times 10^{16}\equiv -5*46\equiv -5\cdot (-17)\equiv 83\equiv 21 \pmod {63}$.