Ok. I'm having a bit of a problem with a mathematical task my friend challenged me with, find the answer to two divided numbers without any division and the method used has to work for all whole numbers, so let's say I have the numbers $13 / 3$, by using repeated subtraction that gives me the number $4$ with the remainder of 1 but how can I find the decimal number with without using division, normally I could just do $1 / 3$ to find it but as I explained earlier I can't use division, is there a way to do this? Thanks in advance. (Sorry for bad grammar.)
2026-04-24 15:47:28.1777045648
Division Without Division
214 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in RECREATIONAL-MATHEMATICS
- Good ideas for communicating the joy of mathematics to nine and ten year olds
- Who has built the house of Mason?
- Is there any tri-angle ?
- In what position , the dogs will reside?
- existence of solutions of $a^n+b^n+c^n=6^n$
- Sushi Go! and optimal passing strategy
- Cut the letter $M$ to obtain $9$ single triangles by drawing $3$ straight lines
- Tennis balls problem from John H Conway's "Genius At Play"
- The Heegner Polynomials
- 2018 January Challenge: Prove inequality in geometry problem
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?
Since multiplication is allowed,
$$1/3=(10/3)/10\tag1$$
$$10/3=3+1/3\tag2$$
substitute $(2)$ into $(1)$
$$1/3=(3+1/3)/10$$
If we rewrite $1/3=x$,
$$x=(3+x)/10$$
or, $x_n=(3+x_{n-1})/10$
We don't need to do division by $10$, just shift the decimals over $1$.
I recommend starting with $x_0=0$.
For example,
$$x_0=0$$
$$x_1=3/10=0.3$$
$$x_2=3.3/10=0.33$$
And so on... you can see we will get $x=0.333\dots$
Works for dividing two positive numbers.
Another example could be
$$x_n=(2+2x_{n-1})/10$$
where $x=1/4$.
$$x_0=0$$
$$x_1=2/10=0.2$$
$$x_2=2.4/10=0.24$$
$$x_3=2.48/10=0.248$$
And again, it gets closer and closer to $1/4$, or $0.25$.
(Not so sure about a general formula, you might have to make one based on remainders and stuff)
Once the number gets larger than $10$, you have to use an altered version of my formula using $100$, $1000$, or more, shifting the decimal as needed.
To get the algorithm used here to calculate $1/n$, rewrite it like $(1)$ above, $(10/n)/10$, or different numbers as needed.
$(2)$ Rewrite $10/n$ by subtracting out, so that you may get $a+r(1/n)$, where $r$ is the remainder.
Then substitute $(2)$ into $(1)$ to get the formula desired.
And to prove that dividing by $10$ is a shift in decimal places without the use of division
$$\frac{\sum_{-\infty<n<\infty}d_n10^{-n}}{10}=\sum_{-\infty<n<\infty}d_n10^{-(n+1)}$$
Basically the same statement written in math, where $d_n$ is the $n$th digit to the right of the decimal point.
Now, if we multiply both sides by $10$ and distribute the $10$ into the sum, we get a true equality.