Need help with AMATYC math problem

  • Thread starter carlsjo
  • Start date
In summary, the conversation was about solving a problem that involved finding the smallest number divisible by 33 greater than 1,000,000 with all 0's and 1's as digits. One person provided a Mathematica solution, while another suggested using the divisibility rules for 11 and 3. They discussed the potential solutions and ultimately determined that the correct answer was 1,101,111. The conversation ended with gratitude for the explanation and confirmation of the correct answer.
  • #1
carlsjo
4
0
Does anyone know how to solve this problem:

"Let N be the smallest number divisible by 33 which is greater than 1,000,000 and whose digits are all 0’s and 1’s. What are N’s leading four digits?"

I ran across this problem in an old AMATYC contest question.

Any help would be much appreciated.
 
Mathematics news on Phys.org
  • #2
It is doubtful that the contest would have wanted my one-line Mathematica solution:

In :=
First@Select[
First /@ RealDigits /@
Select[Range[1000000, 2000000], IntegerQ[#/33] &],
Function[s, And @@ (If[# > 1, False, True] & /@ s)]]

Out : =

{1, 1, 0, 1, 1, 1, 1}

Therefore the winner is 1101111 = 33367 * 33
 
  • #3
By a trivial extension of my method we also solve the problem for the case where the lower bound is a billion, so the answer is 1000011111, and when the lower bound is a trillion so that the answer is 1000000101111.
 
  • #4
Try using the divisibility rules for 11 and 3.
 
  • #5
Using Mathematica is definitely not an option, but very effective. Nice program. Thanks.

I'll try working throught the divisibilty rules for 11 and 3 like aligatorman suggests and see what I can come up with.
 
  • #6
Using the rules:

Division by three: The sum of the digits is divisible by 3.

Division by eleven: The alternating sum of the digits is divisible by 11 (or is 0). i.e. for 1111, +1-1+1-1=0 so it is divisible by 11.

First, I presumed that the answer is 7 digits long with the first digit being one.

The digit sum could be 6 or 3.

Presuming the digit sum is 6:

If the numbers digits are 1,a,b,c,d,e,f then a+b+c+d+e+f = 5 (meaning that there is only one 0)

This zero could go in any of the 6 places, but if you take into account for the division by 11 rule, the smallest number possible to make with 6 ones in it is:

1,101,111

Presuming the digit sum is 3:

We know that a+b+c+d+e+f=2 and that a-b+c-d+e-f = 0. If we want a smaller answer, then we also know that either a=0, or a=1 and b=0. I will check each possibility for solutions.

if the answer is 1,10c,def:

c+d+e+f=1 and -c+d-e+f = 0. There are NO solutions in this form! (because how can the sum of just one one be zero?)

if the answer is 1,0bc,def:

b+c+d+e+f=2 and b-c+d-e+f=-1. There are NO solutions in this form either! (because how can the sum of 2 ones be -1?)

So the correct answer is the one mentioned before:

1,101,111.

Is this right?
 
  • #7
Sorry for late response.
That was the answer: 1011, 111.
Thanks. Your explanation was very helpful.
 

FAQ: Need help with AMATYC math problem

What is AMATYC math problem?

AMATYC math problem refers to a mathematical question or exercise that is designed to assess a student's understanding and application of mathematical concepts and problem-solving skills. It is typically used in the context of the American Mathematical Association of Two-Year Colleges (AMATYC) and its annual Student Mathematics League (SML) competition.

How can I get help with an AMATYC math problem?

There are several ways to get help with an AMATYC math problem. You can ask your math teacher or professor for guidance, consult online resources and study guides, join a study group, or seek assistance from a tutor or math center.

What are some tips for solving AMATYC math problems?

Some tips for solving AMATYC math problems include carefully reading and understanding the problem, identifying the given information and what is being asked, choosing an appropriate strategy or formula to solve the problem, and checking your solution for accuracy and reasonableness.

Are there any common mistakes to avoid when solving AMATYC math problems?

Yes, some common mistakes to avoid when solving AMATYC math problems include misreading or misinterpreting the problem, using incorrect formulas or equations, making arithmetic errors, and not checking your work for accuracy.

How can I improve my performance on AMATYC math problems?

To improve your performance on AMATYC math problems, it is important to practice regularly, review key concepts and formulas, and seek help when needed. You can also try breaking down the problem into smaller, more manageable parts, and using real-life examples to better understand the problem and its application.

Back
Top