
Easy level
This level has a single operation per question and the terms are at most 4 digits (including decimals).
All answers have 4 digits or less. This is (much) simpler than a real trading test. If you want you can
also try this level as a test (posts to
!) or set up a
custom exercise.
}
elseif( $_GET['quickselect'] == 'math_medium' )
{
$level = "Medium";
$_GET['maxTermLength'] = 5;
$_GET['maxTermDecimalLength'] = 4;
$_GET['maxAnswerLength'] = 5;
$_GET['maxAnswerDecimalLength'] = 4;
$_GET['minOperations'] = 1;
$_GET['maxOperations'] = 4;
?>
Medium level
This level has a maximum of 4 operations per question and all terms are at most 5 digits including the decimal part.
All answers have 5 digits or less. This is about the level of some trading tests. If you want you can also try this
level as a test (posts to
!) or set up a
custom exercise.
}
elseif( $_GET['quickselect'] == 'math_hard' )
{
$level = "Hard";
$_GET['maxTermLength'] = 6;
$_GET['maxTermDecimalLength'] = 5;
$_GET['maxAnswerLength'] = 6;
$_GET['maxAnswerDecimalLength'] = 5;
$_GET['minOperations'] = 3;
$_GET['maxOperations'] = 4;
?>
Hard level
This level has a maximum of 6 operations per question and all terms are at most 6 digits including the decimal part.
All answers have 5 digits or less. This is beyond the level of most trading tests. If you want you can also try this
level as a test (posts to
!) or set up a
custom exercise.
}
else
{
$generateTest = false;
echo 'Invalid quick select: ' . $_GET['quickselect'];
}
}
// Clean start default variables
if( ! isset( $_GET['posted'] ) )
{
$_GET['useNegativeVariables'] = 'on';
$_GET['optimizeSolvability'] = 'on';
$_GET['preventTooSimple'] = 'on';
$_GET['showSetup'] = 'on';
}
// Generate test?
if( $generateTest )
{
// Normalize values
if( ! isset( $_GET['questionCount'] ) ||
! is_numeric( $_GET['questionCount'] ) ||
$_GET['questionCount'] <= 0 ||
$_GET['questionCount'] > 250 )
{
$_GET['questionCount'] = 80;
}
if( ! isset( $_GET['maxTermLength'] ) ||
! is_numeric( $_GET['maxTermLength'] ) ||
$_GET['maxTermLength'] <= 0 ||
$_GET['maxTermLength'] > 20 )
{
$_GET['maxTermLength'] = 6;
}
if( ! isset( $_GET['maxTermDecimalLength'] ) ||
! is_numeric( $_GET['maxTermDecimalLength'] ) ||
$_GET['maxTermDecimalLength'] <= 0 ||
$_GET['maxTermDecimalLength'] > 20 )
{
$_GET['maxTermDecimalLength'] = 3;
}
if( ! isset( $_GET['maxAnswerLength'] ) ||
! is_numeric( $_GET['maxAnswerLength'] ) ||
$_GET['maxAnswerLength'] <= 0 ||
$_GET['maxAnswerLength'] > 20 )
{
$_GET['maxAnswerLength'] = 4;
}
if( ! isset( $_GET['maxAnswerDecimalLength'] ) ||
! is_numeric( $_GET['maxAnswerDecimalLength'] ) ||
$_GET['maxAnswerDecimalLength'] < 0 ||
$_GET['maxAnswerDecimalLength'] > 20 )
{
$_GET['maxAnswerDecimalLength'] = 3;
}
if( ! isset( $_GET['minOperations'] ) ||
! is_numeric( $_GET['minOperations'] ) ||
$_GET['minOperations'] <= 0 ||
$_GET['minOperations'] > 9 )
{
$_GET['minOperations'] = 1;
}
if( ! isset( $_GET['maxOperations'] ) ||
! is_numeric( $_GET['maxOperations'] ) ||
$_GET['maxOperations'] <= 0 ||
$_GET['maxOperations'] > 9 )
{
$_GET['maxOperations'] = 4;
}
if( $_GET['minOperations'] > $_GET['maxOperations'] )
{
$_GET['minOperations'] = 1;
$_GET['maxOperations'] = 4;
}
if( ! isset( $_GET['mode'] ) ||
( //$_GET['mode'] != 'exam' &&
$_GET['mode'] != 'test' &&
$_GET['mode'] != 'practice' ) )
{
$_GET['mode'] = 'practice';
}
if( ! isset( $_GET['useVariableInteger'] ) &&
! isset( $_GET['useVariableDouble'] ) )
{
$_GET['useVariableInteger'] = 'on';
$_GET['useVariableDouble'] = 'on';
}
if( ! isset( $_GET['useOperatorAdd'] ) &&
! isset( $_GET['useOperatorSubtract'] ) &&
! isset( $_GET['useOperatorMultiply'] ) &&
! isset( $_GET['useOperatorDivide'] ) )
{
$_GET['useOperatorAdd'] = 'on';
$_GET['useOperatorSubtract'] = 'on';
$_GET['useOperatorMultiply'] = 'on';
$_GET['useOperatorDivide'] = 'on';
}
// FIXME this prevent do..while deadlocks below but it's not nice
if( ! isset( $_GET['useVariableInteger'] ) &&
isset( $_GET['useVariableDouble'] ) &&
! isset( $_GET['useVariableFactor'] ) &&
! isset( $_GET['useOperatorAdd'] ) &&
! isset( $_GET['useOperatorSubtract'] ) &&
isset( $_GET['useOperatorMultiply'] ) &&
! isset( $_GET['useOperatorDivide'] ) &&
! isset( $_GET['optimizeSolvability'] ) )
{
die( 'Impossible combination to guarantee easy exercises, disable optimizeSolvability if you really want this.' );
}
// Show setup?
if( isset( $_GET['showSetup'] ) )
{
?>
Set up exercise
Scoring
You get one point for every correct answer. Deduct one point for each error. If you skip a question or run out of time in a timed test, all following questions are not used in your score. Time yourself to 6 seconds per question. Generally you need to pass 55 out of 80 questions or ~70% of the maximum score, but higher is always better.
Manual
The answer to the test will be printed right next to it in the site's background color. You can use CTRL+A, Command+A or use
the mouse to select all text on this page.
Questions
| 1) |
144 + -673 |
-529 |
| 2) |
70 / 0.01 |
7000 |
| 3) |
12.63 - -73 |
85.63 |
| 4) |
0.8 * 0.2 |
0.16 |
| 5) |
286.4 - -45 |
331.4 |
| 6) |
-35 * 8.4 |
-294 |
| 7) |
0.73 + 73 |
73.73 |
| 8) |
964 - 2.1 |
961.9 |
| 9) |
0.56 + 0.788 |
1.348 |
| 10) |
-9 + -0.5 |
-9.5 |
| 11) |
-67 * -7 |
469 |
| 12) |
562 + 4 |
566 |
| 13) |
4 - -0.05 |
4.05 |
| 14) |
-414 + 8 |
-406 |
| 15) |
72 - 5 |
67 |
| 16) |
-0.008 + 3 |
2.992 |
| 17) |
6 * 30.2 |
181.2 |
| 18) |
48 - 134.1 |
-86.1 |
| 19) |
9 + -0.994 |
8.006 |
| 20) |
0.2 + -7 |
-6.8 |
| 21) |
96 + 6 |
102 |
| 22) |
-81 * -0.019 |
1.539 |
| 23) |
0.3 + 5.6 |
5.9 |
| 24) |
394 / 0.05 |
7880 |
| 25) |
0.007 + 1 |
1.007 |
| 26) |
0.69 - 0.06 |
0.63 |
| 27) |
-0.002 + 2 |
1.998 |
| 28) |
-4.6 + 2.58 |
-2.02 |
| 29) |
-421 - 6 |
-427 |
| 30) |
-25 - -2366 |
2341 |
| 31) |
6 * -62 |
-372 |
| 32) |
8.84 + -0.093 |
8.747 |
| 33) |
75 - 606 |
-531 |
| 34) |
0.06 - -0.34 |
0.4 |
| 35) |
-0.08 * 4 |
-0.32 |
| 36) |
4 - -0.668 |
4.668 |
| 37) |
1 + -0.03 |
0.97 |
| 38) |
778 * 6 |
4668 |
| 39) |
1665 * 4 |
6660 |
| 40) |
-0.037 + 0.9 |
0.863 |
| 41) |
99.4 * 4 |
397.6 |
| 42) |
-204 + 8 |
-196 |
| 43) |
-0.6 - 1 |
-1.6 |
| 44) |
7 + -0.09 |
6.91 |
| 45) |
9 * 0.2 |
1.8 |
| 46) |
2.9 / 4 |
0.725 |
| 47) |
5609 - -38 |
5647 |
| 48) |
3 + 14.2 |
17.2 |
| 49) |
46 - 47.8 |
-1.8 |
| 50) |
12 * 0.006 |
0.072 |
| 51) |
4 - -41.8 |
45.8 |
| 52) |
-75 + -914 |
-989 |
| 53) |
3869 - 3 |
3866 |
| 54) |
51 + -3 |
48 |
| 55) |
2.6 - -6.71 |
9.31 |
| 56) |
-0.95 - -0.8 |
-0.15 |
| 57) |
-40 + -8 |
-48 |
| 58) |
-4 + 5 |
1 |
| 59) |
-0.73 - 2 |
-2.73 |
| 60) |
0.06 / -3 |
-0.02 |
| 61) |
-8 + -0.18 |
-8.18 |
| 62) |
2301 / 1.5 |
1534 |
| 63) |
-284 * -16 |
4544 |
| 64) |
595 + 33 |
628 |
| 65) |
7450 + -46 |
7404 |
| 66) |
127 - -678 |
805 |
| 67) |
-640 + 918 |
278 |
| 68) |
0.7 - 3.49 |
-2.79 |
| 69) |
60 + 0.04 |
60.04 |
| 70) |
1692 - -7060 |
8752 |
| 71) |
-9.6 + 67.6 |
58 |
| 72) |
94 - -307.4 |
401.4 |
| 73) |
58 + 0.6 |
58.6 |
| 74) |
89 * 4 |
356 |
| 75) |
5 - 7 |
-2 |
| 76) |
797 + 26 |
823 |
| 77) |
7 - 47.1 |
-40.1 |
| 78) |
0.07 / 5 |
0.014 |
| 79) |
-0.45 * -67 |
30.15 |
| 80) |
11 + 5 |
16 |
|
|
Quick links:
Practice:
Easy |
Medium |
Hard
Test:
Easy |
Medium |
Hard
Customized