
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) |
33.9 + 96 |
129.9 |
| 2) |
6 - -81.97 |
87.97 |
| 3) |
7 / 1.6 |
4.375 |
| 4) |
20 + 457 |
477 |
| 5) |
922 / 5 |
184.4 |
| 6) |
6.883 - -0.66 |
7.543 |
| 7) |
0.699 * 4 |
2.796 |
| 8) |
66 - 9 |
57 |
| 9) |
36.4 + 0.17 |
36.57 |
| 10) |
22 - -0.16 |
22.16 |
| 11) |
3741 - 3 |
3738 |
| 12) |
73 * 0.7 |
51.1 |
| 13) |
-88 + 0.1 |
-87.9 |
| 14) |
0.365 + -0.001 |
0.364 |
| 15) |
6 * 5 |
30 |
| 16) |
0.5 + 0.002 |
0.502 |
| 17) |
-91 * -3.8 |
345.8 |
| 18) |
-0.2 + -31.5 |
-31.7 |
| 19) |
-0.8 * -58.7 |
46.96 |
| 20) |
-532 + 470 |
-62 |
| 21) |
-656.6 / 67 |
-9.8 |
| 22) |
-2 / -4 |
0.5 |
| 23) |
-0.08 - -6 |
5.92 |
| 24) |
4 - -557 |
561 |
| 25) |
-0.07 - 4.41 |
-4.48 |
| 26) |
3.2 * 9.8 |
31.36 |
| 27) |
-0.05 + 60.5 |
60.45 |
| 28) |
2 + 4313 |
4315 |
| 29) |
0.8 - 0.081 |
0.719 |
| 30) |
4 * 181 |
724 |
| 31) |
-9 - -0.96 |
-8.04 |
| 32) |
-7 + -8 |
-15 |
| 33) |
0.65 + 0.826 |
1.476 |
| 34) |
-4 - 7 |
-11 |
| 35) |
-0.44 - 8 |
-8.44 |
| 36) |
7 * 476 |
3332 |
| 37) |
0.5 * 9.6 |
4.8 |
| 38) |
6964 + 92 |
7056 |
| 39) |
-0.007 + 6.446 |
6.439 |
| 40) |
8 + 216 |
224 |
| 41) |
0.005 * 5.8 |
0.029 |
| 42) |
8 - 278 |
-270 |
| 43) |
-17.3 + 866 |
848.7 |
| 44) |
-785 - -49 |
-736 |
| 45) |
25 + 337 |
362 |
| 46) |
-6 * -8.35 |
50.1 |
| 47) |
6 - 39 |
-33 |
| 48) |
0.7 * 0.08 |
0.056 |
| 49) |
7.26 + 0.01 |
7.27 |
| 50) |
-3.2 * 92.5 |
-296 |
| 51) |
62 - 32.65 |
29.35 |
| 52) |
8 + 0.064 |
8.064 |
| 53) |
-3 + 682 |
679 |
| 54) |
36 + -53 |
-17 |
| 55) |
-956 + 262 |
-694 |
| 56) |
-2.31 - -7 |
4.69 |
| 57) |
2 + 5.4 |
7.4 |
| 58) |
-72 * 5 |
-360 |
| 59) |
273 + 86 |
359 |
| 60) |
21 / 0.3 |
70 |
| 61) |
642 - 6 |
636 |
| 62) |
-250 + 48 |
-202 |
| 63) |
-6.8 + 7 |
0.2 |
| 64) |
4 + -0.09 |
3.91 |
| 65) |
32 * 0.069 |
2.208 |
| 66) |
-0.28 - -62.7 |
62.42 |
| 67) |
0.09 + 66 |
66.09 |
| 68) |
1 - -3.21 |
4.21 |
| 69) |
7788 + -5 |
7783 |
| 70) |
0.41 * 32 |
13.12 |
| 71) |
9 - 0.004 |
8.996 |
| 72) |
0.79 + -0.043 |
0.747 |
| 73) |
9918 - 5674 |
4244 |
| 74) |
7833 - 9 |
7824 |
| 75) |
94.9 + 0.83 |
95.73 |
| 76) |
71 + -737 |
-666 |
| 77) |
3 - 39 |
-36 |
| 78) |
1.8 - 2 |
-0.2 |
| 79) |
-63 * 0.8 |
-50.4 |
| 80) |
0.9 - 84 |
-83.1 |
|
|
Quick links:
Practice:
Easy |
Medium |
Hard
Test:
Easy |
Medium |
Hard
Customized