
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) |
279 - -8084 |
8363 |
| 2) |
7 + -5.933 |
1.067 |
| 3) |
0.2 - 9 |
-8.8 |
| 4) |
47 + 16 |
63 |
| 5) |
6 * 0.001 |
0.006 |
| 6) |
-60 + 2530 |
2470 |
| 7) |
9.7 * -4 |
-38.8 |
| 8) |
32.2 + 89 |
121.2 |
| 9) |
0.01 - -31.7 |
31.71 |
| 10) |
87 * 7 |
609 |
| 11) |
-0.8 + 0.1 |
-0.7 |
| 12) |
0.1 + -28.5 |
-28.4 |
| 13) |
9 + 114 |
123 |
| 14) |
31.1 + -4 |
27.1 |
| 15) |
6.5 * 0.774 |
5.031 |
| 16) |
0.275 + 0.076 |
0.351 |
| 17) |
-56 - -366 |
310 |
| 18) |
0.008 - 0.002 |
0.006 |
| 19) |
881 - 0.7 |
880.3 |
| 20) |
0.66 - 0.052 |
0.608 |
| 21) |
5158 + 703 |
5861 |
| 22) |
119.8 - -1 |
120.8 |
| 23) |
124 + 95 |
219 |
| 24) |
-58 + 588.3 |
530.3 |
| 25) |
-444 - -7 |
-437 |
| 26) |
5 + -0.29 |
4.71 |
| 27) |
-0.002 - 0.038 |
-0.04 |
| 28) |
-6 - 1.49 |
-7.49 |
| 29) |
1615 * 0.2 |
323 |
| 30) |
623 - -56 |
679 |
| 31) |
833 + 6702 |
7535 |
| 32) |
0.7 - -1.055 |
1.755 |
| 33) |
4.4 + 189 |
193.4 |
| 34) |
2.96 * 14 |
41.44 |
| 35) |
491 - 9 |
482 |
| 36) |
2 + -3.3 |
-1.3 |
| 37) |
64.8 / 1.6 |
40.5 |
| 38) |
-85 - -23 |
-62 |
| 39) |
-0.03 - 8.08 |
-8.11 |
| 40) |
9 - -3413 |
3422 |
| 41) |
2 + -3 |
-1 |
| 42) |
4 - -821.2 |
825.2 |
| 43) |
1 + -8.49 |
-7.49 |
| 44) |
160 + 81 |
241 |
| 45) |
-0.82 * -6.9 |
5.658 |
| 46) |
0.9 - 44 |
-43.1 |
| 47) |
-18 * 5 |
-90 |
| 48) |
494 - -6 |
500 |
| 49) |
6.666 - 5 |
1.666 |
| 50) |
258 - 4 |
254 |
| 51) |
4.117 + 0.033 |
4.15 |
| 52) |
5646 - 1418 |
4228 |
| 53) |
0.062 + 3 |
3.062 |
| 54) |
55.3 * 0.9 |
49.77 |
| 55) |
0.3 + 6 |
6.3 |
| 56) |
-7 - -84.54 |
77.54 |
| 57) |
4081 - 35 |
4046 |
| 58) |
298 * 0.006 |
1.788 |
| 59) |
0.9 + 407 |
407.9 |
| 60) |
142 - 71 |
71 |
| 61) |
409 + 4 |
413 |
| 62) |
1 * 60 |
60 |
| 63) |
87 + 1 |
88 |
| 64) |
-0.02 - -78 |
77.98 |
| 65) |
0.611 + 0.2 |
0.811 |
| 66) |
6454 - 573 |
5881 |
| 67) |
-8 + -253 |
-261 |
| 68) |
880 + 2 |
882 |
| 69) |
-1.6 - -7 |
5.4 |
| 70) |
14 * 0.07 |
0.98 |
| 71) |
-45 * -153 |
6885 |
| 72) |
7877 + 96 |
7973 |
| 73) |
0.05 + 0.275 |
0.325 |
| 74) |
4 + 9 |
13 |
| 75) |
97 * 9 |
873 |
| 76) |
3 + -92 |
-89 |
| 77) |
-51 * -0.009 |
0.459 |
| 78) |
7 - 0.03 |
6.97 |
| 79) |
8 * 7.6 |
60.8 |
| 80) |
361 * 0.27 |
97.47 |
|
|
Quick links:
Practice:
Easy |
Medium |
Hard
Test:
Easy |
Medium |
Hard
Customized