A frog begins at $P_0 = (0,0)$ and makes a sequence of jumps according to the following rule: from $P_n = (x_n, y_n),$ the frog jumps to $P_{n+1},$ which may be any of the points $(x_n + 7, y_n + 2),$ $(x_n + 2, y_n + 7),$ $(x_n - 5, y_n - 10),$ or $(x_n - 10, y_n - 5).$ There are $M$ points $(x, y)$ with $|x| + |y| \le 100$ that can be reached by a sequence of such jumps. I need to find the number of such points that can be reached. The only conclusion I have been able to draw is that whatever the point the frog jumps the sum of its coordinates is a multiple of 3 and difference of its coordinates is a multiple of 5, but I am unable to deduce the number of such points
2026-03-28 05:22:41.1774675361
Number of points that can be reached by following a certain pattern of jumps
62 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in COMBINATORICS
- Using only the digits 2,3,9, how many six-digit numbers can be formed which are divisible by 6?
- The function $f(x)=$ ${b^mx^m}\over(1-bx)^{m+1}$ is a generating function of the sequence $\{a_n\}$. Find the coefficient of $x^n$
- Name of Theorem for Coloring of $\{1, \dots, n\}$
- Hard combinatorial identity: $\sum_{l=0}^p(-1)^l\binom{2l}{l}\binom{k}{p-l}\binom{2k+2l-2p}{k+l-p}^{-1}=4^p\binom{k-1}{p}\binom{2k}{k}^{-1}$
- Algebraic step including finite sum and binomial coefficient
- nth letter of lexicographically ordered substrings
- Count of possible money splits
- Covering vector space over finite field by subspaces
- A certain partition of 28
- Counting argument proof or inductive proof of $F_1 {n \choose1}+...+F_n {n \choose n} = F_{2n}$ where $F_i$ are Fibonacci
Related Questions in RECURRENCE-RELATIONS
- Recurrence Relation for Towers of Hanoi
- Solve recurrence equation: $a_{n}=(n-1)(a_{n-1}+a_{n-2})$
- General way to solve linear recursive questions
- Approximate x+1 without addition and logarithms
- Recurrence relation of the series
- first order inhomogeneous linear difference equation general solution
- Guess formula for sequence in FriCAS
- Solve the following recurrence relation: $a_{n}=10a_{n-2}$
- Find closed form for $a_n=2\frac{n-1}{n}a_{n-1}-2\frac{n-2}{n}a_{n-2}$ for all $n \ge 3$
- Young Tableaux generating function
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?
1) Proof that the frog can move to any integer grid point $(x,y)$ that fullfills the conditions (as noted by the original poster) $x+y \equiv 0\pmod 3$ and $x-y \equiv 0 \pmod 5$:
First, I'll denote the jumps with $(+7,+2), (-10,-5)$ a.s.o.
Second, note that because each jump just adds a given number to each coordinate, the order jumps are made does not matter for the final end point. If the frog makes 2 jumps $(+7,+2)$ and then one jump $(-10,-5)$, the frog ends up in the same position as if he started with the $(-10,-5)$ and made the 2 jumps $(+7,+2)$ afterwards, or had the $(-10,-5)$ as the middle jump. One can write this as
$$2\times(+7,+2)+(-10,-5) = (+4,-1).$$
Note that $$5\times(+7,+2)+5\times(+2,+7)+3\times(-10,-5)+3\times(-5,-10)=(0,0)$$ This involves all 4 legal jumps, and this means that all legal jumps are reversible, because, from the above easily follows e.g. $$(-7,-2) = {\mathbf 4}\times(+7,+2)+5\times(+2,+7)+3\times(-10,-5)+3\times(-5,-10)$$ and the same for all the other reverses of the legal jumps. That means we can treat $(-7,-2)$ a.s.o. also as legal jumps.
Now lets take any $(x,y)$ that fullfills $x+y \equiv 0\pmod 3$ and $x-y \equiv 0 \pmod 5$. Because $\gcd(7,2)=1$ we can find integers $a,b$ with $7a+2b=x$.
Starting from $(0,0)$ we do $a$ jumps of the form $(+7,+2)$, if $a>0$, or $-a$ jumps of the form $(-7,-2)$ if $a<0$. If $a=0$ we do no jumps of that form. No matter what, we are now at a point with $x$-coordinate $7a$. Afterwards, we do $b$ jumps of the form $(+2,+7)$ (or $-b$ of the form $(-2,-7)$, or none, as appropriate).
That brings the frog to a point $(x,y_0)$ (remember $x=7a+2b$). With a given $x$, the reminder of $y$ after division by 3 is now uniquely determined by $x+y \equiv 0\pmod 3$, and the reminder after division by 5 is uniquely determined by $x-y \equiv 0 \pmod 5$. That means $y$ is uniquely determined $\pmod {15}$.
Since $y_0$ is also a possible $y$, we now know that $y \equiv y_0 \pmod {15}$.
Now we have
$$(+0,+15) = 2\times(+5, +10) + (-10,-5)$$
and the reverse
$$(-0,-15) = 2\times(-5, -10) + (+10,+5).$$
That means no matter if $y > y_0$ or $y < y_0$, we can reach $(x,y)$ from $(x,y_0)$ by applying a series of jumps in groups of 3 that moves the frog up or down by 15 units.
2) Counting the number of interger grid points with $x+y \equiv 0\pmod 3$ and $x-y \equiv 0 \pmod 5$ that are in the area described by $|x|+|y| \le 100$:
That area is a square with vertices $(-100,0), (0,-100),(100,0)$ and $(0,100)$. One convinient way (for this problem) is to divide it into 101 line segments $$(100,0) - (0,100),$$ $$(99,-1) - (-1,99),$$ $$(98,-2) - (-2,98),$$ $$\ldots$$ $$(50,-50) - (-50,50),$$ $$\ldots$$ $$(0,-100) - (-100,0).$$
Each line segment has a constant $x+y$ value (starting from $100$ in the first line, then $98$ to $-100$ in the last line. If that $x+y$ value is not divisible by $3$, then there are obviously no reachable points on that line segment for the frog.
If that $x+y$ value is divisible by $3$, then there are reachable points. It is easy to sea that if $(x,y)$ is such a reachable point, then the next ones (left or right of it) will be $(x-5,y+5)$ and $(x+5,y-5)$, that means every fifth point on that line segment will be a reachable point. Since each line segment contains 101 points, the number of reachable points on each line segment can be 21, if the first (and hence also the last) point of the line segment are reachable, or 20, otherwise.
If we use my above listing of the line segments, the first to have reachable points is
$$(98,-2) - (-2,98),$$ then come $$(95,-5) - (-5,94),$$ $$(92,-8) - (-8,92),$$ $$\ldots$$ $$(2,-98) - (-98,2),$$
alltogther 33 line segments. It's easy to see that the first point $(x,y)$ of all of these line segments satisfies $x-y=100$, so all 33 of those line segments contain 21 reachable points, for a grand total of $33\times 21=693$ reachable points.