Say for example, that I want the highest multiple of 36 below 100. Is there a function that allows me to generate this with two arbitrary numbers?
2026-04-24 02:34:40.1776998080
Is there a function that allows you to generate the highest multiple of a number below a certain boundary?
51 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
If $x$ the number whose multiple you're trying to find and $y$ is the upper bound what you're looking for is $$x{\left\lfloor{ y\over x}\right\rfloor}$$
where $\lfloor\cdot\rfloor$ is the floor function.