Use Number Functions, Congruence, and Selection Operators
Some symbols combine two inputs. Some inspect one number. Some make a true-or-false comparison, and some simply choose the smaller or larger input. Read the local definition, identify the symbol family, and then use the right kind of reasoning.
Decide what kind of mathematical object you are reading
These descriptions can overlap. A minimum or maximum selector uses two inputs and returns one number, so it is also a binary operation. “Selection operator” is its more specific job. In the matching question, choose the most specific description. Thus7▽4 is a selection operator, although it is also a binary operation.
Binary operation
Uses two inputs and produces one output.
a∧ bUnary function
Inspects one input and returns one value.
φ(n), ψ(n)Relation
Makes a statement that is true or false.
a ≡ b (mod m)Selection operator
Returns one of the inputs according to a rule.
min(a,b), max(a,b)Need a hint?
Count inputs and identify the result. A selector is a special kind of binary operation.
Combine the GCD and LCM in one defined operation
Divisors and common divisors
Common divisors:
First common multiples
The identity gcd(a,b)×lcm(a,b)=a× b provides a useful check.
Need a hint?
Find the largest common divisor and first common multiple, then add them.
Work backward through a GCD–LCM operation
Why does the search cover every answer?
For positive x, lcm(6,x) is at least x and gcd(6,x) is at least 1. If their sum is 33, then x + 1 ≤ 33, so x ≤ 32. Searching through 40 therefore covers every possible worked solution.
A short hand solution
Call the GCD g. It divides 6 and the LCM, so it also divides their sum 33. Thus g is 1 or 3. If g=1, the LCM would be 32, which is not a multiple of 6. So g=3 and the LCM is 30. Using GCD × LCM = 6 × x gives 3 × 30 = 6x, hence x=15. Check: gcd(6,15)=3 and lcm(6,15)=30.
| x | GCD | LCM | operation value | comparison |
|---|
Need a hint?
Use the complete GCD–LCM definition and the bound x≤32 for the practice problem.
Compose the divisor-count function with itself
Count exponent choices
18 = 21 × 32. A divisor may use zero or one copy of 2 (two choices) and zero, one, or two copies of 3 (three choices). Each combination gives exactly one divisor, so 2 × 3 = 6 divisors. In general, a prime with exponent e contributes e+1 choices, including zero copies.
Starting number
Positive divisors:
Exponent shortcut
If n=p₁e₁p₂e₂⋯, then the number of divisors is (e₁+1)(e₂+1)⋯.
Need a hint?
The first divisor count becomes the new input; it is not the final answer yet.
Use a divisor-sum function and compare function compositions
Divisors of the current input
Two functions, two questions
The same divisor list answers two different questions: “How many?” and “What is their sum?”
Need a hint?
List factor pairs to avoid missing a divisor; then count or add according to the chosen function.
Read congruence as a same-remainder relation
Values congruent to 7 modulo 2:
Both remainders are 1.
Need a hint?
Compute the reference remainder, then move by jumps equal to the modulus.
Let selection operators choose the smaller or larger input
Apply the Test 25 selectors to exact fractions
In the test expression, ○ selects the larger input and △ selects the smaller input.
Make the four selections first
This is an exact-fraction adaptation of the test expression. Here ○ chooses the larger number and △ chooses the smaller.
[(2/3 ○ 17/26) + (5/8 △ 23/33)] ÷ [(1/3 △ 34/99) + (237/106 ○ 9/4)]
The first two selections belong to the numerator; the last two belong to the denominator.
Compare your selections and calculation
Need a hint?
Make each of the four selections first. Only then add the numerator and denominator terms.
Split a nonnegative number into integer and fractional parts
Read a nonnegative decimal as written: the digits before the decimal point form its integer part, and the digits after it form its fractional part. For example, 12.075 = 12 + 0.075. Keep the leading zeros in the fractional part. Do not round a value across an integer boundary.
Solve the worked example system
Reason by parts
The first equation shows that the fractional part of a is 0.3. The second equation then gives b=7.8-0.3=7.5. Since [b]=7, the first equation gives a=15.3-7=8.3.
Verify a candidate pair
Need a hint?
The fractional part is at least zero and below one. Read the first equation’s decimal part first.
Number-function and relation workshop
Correct all eight questions to complete the workshop.
Need a hint?
Answers:relation;42;9;28;6;4;23;1/2. For18∧12 addGCD6 andLCM36. The divisors of36 have3×3 exponent choices. ψ(12)=1+2+3+4+6+12=28. Forφ(ψ(6)), firstψ(6)=12, thenφ(12)=6. The congruent values are4,11,18,25.
Exit ticket and certificate
Here φ counts positive divisors and ψ sums them. For nonnegative t, [t] is the integer part and {t}=t−[t] is the fractional part.
Need a hint?
Answers:unary function;33;4;3,8,13,18;8.3;7.5. UseGCD3+LCM30; divisor-count chain18→6→4; jumps of5 from3; and the decimal-part equations.
Number Function, Congruence & Selector Navigator
This certifies that the learner can use GCD–LCM operations, divisor-count and divisor-sum functions, same-remainder congruence, minimum and maximum selectors, and integer and fractional parts with accurate local notation.