Given an integer , if is divided by the remainder is , and if is divided by the remainder is . Possible values for are
Command Palette
Search for a command to run...
Set 6
Search for a command to run...
Given an integer m, if m is divided by 7 the remainder is 3, and if m is divided by 3 the remainder is 2. Possible values for m are
Given the conditions for integer m:
Let's check each statement:
Value m=52. Divided by 7: 52=7×7+3. Remainder 3 (Satisfied). Divided by 3: 52=17×3+1. Remainder 1 (Not satisfied, should be 2). Thus, statement 1 is incorrect.
Value m=59. Divided by 7: 59=8×7+3. Remainder 3 (Satisfied). Divided by 3: 59=19×3+2. Remainder 2 (Satisfied). Thus, statement 2 is correct.
Value m=42. Divided by 7: 42=6×7+0. Remainder 0 (Not satisfied, should be 3). Divided by 3: 42=14×3+0. Remainder 0 (Not satisfied, should be 2). Thus, statement 3 is incorrect.
Value m=38. Divided by 7: 38=5×7+3. Remainder 3 (Satisfied). Divided by 3: 38=12×3+2. Remainder 2 (Satisfied). Thus, statement 4 is correct.
Since statements 2 and 4 are correct, the correct answer is If (2) and (4) are correct.