
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) |
55.2 - 2 |
53.2 |
| 2) |
-8.2 * 1 |
-8.2 |
| 3) |
78.06 - 37.3 |
40.76 |
| 4) |
2.7 - 0.089 |
2.611 |
| 5) |
9.1 + 0.514 |
9.614 |
| 6) |
59 - -0.09 |
59.09 |
| 7) |
627 * 0.008 |
5.016 |
| 8) |
7 - 3.7 |
3.3 |
| 9) |
-5.8 + 0.04 |
-5.76 |
| 10) |
228 / -3 |
-76 |
| 11) |
83 * 3 |
249 |
| 12) |
0.031 - -9.223 |
9.254 |
| 13) |
451 + 518 |
969 |
| 14) |
9.4 - -11 |
20.4 |
| 15) |
0.09 - -65.6 |
65.69 |
| 16) |
8.724 / 6 |
1.454 |
| 17) |
13.9 - 7.495 |
6.405 |
| 18) |
408 + 71.2 |
479.2 |
| 19) |
6 * 0.887 |
5.322 |
| 20) |
-0.04 + -1.42 |
-1.46 |
| 21) |
2794 + 8 |
2802 |
| 22) |
0.8 * 62 |
49.6 |
| 23) |
15 + 95 |
110 |
| 24) |
-1 + -426 |
-427 |
| 25) |
-0.007 / 0.07 |
-0.1 |
| 26) |
-6 + 3.9 |
-2.1 |
| 27) |
-0.381 + 9.5 |
9.119 |
| 28) |
2 * -0.07 |
-0.14 |
| 29) |
81 + 3652 |
3733 |
| 30) |
-44 + 8.3 |
-35.7 |
| 31) |
69.9 + 339 |
408.9 |
| 32) |
-649 - -5273 |
4624 |
| 33) |
985 + 7 |
992 |
| 34) |
862 * 0.007 |
6.034 |
| 35) |
7.2 - 14.04 |
-6.84 |
| 36) |
4452 + 55 |
4507 |
| 37) |
-9 * -449 |
4041 |
| 38) |
51 - -715 |
766 |
| 39) |
9 + 333.7 |
342.7 |
| 40) |
-0.06 * 7 |
-0.42 |
| 41) |
2.5 - 0.35 |
2.15 |
| 42) |
4.4 * 6 |
26.4 |
| 43) |
8 * 52 |
416 |
| 44) |
1 - 3 |
-2 |
| 45) |
-0.188 / 0.047 |
-4 |
| 46) |
519 * 0.8 |
415.2 |
| 47) |
5 + 92 |
97 |
| 48) |
51 - 7 |
44 |
| 49) |
95 - -25 |
120 |
| 50) |
13 * 0.93 |
12.09 |
| 51) |
6 - 2 |
4 |
| 52) |
93 + -1 |
92 |
| 53) |
4 - 0.004 |
3.996 |
| 54) |
0.002 + 5 |
5.002 |
| 55) |
0.14 * 49 |
6.86 |
| 56) |
596 + 9 |
605 |
| 57) |
7 + 4 |
11 |
| 58) |
2208 - 283 |
1925 |
| 59) |
8 * 50 |
400 |
| 60) |
8 + -1 |
7 |
| 61) |
0.093 - 0.08 |
0.013 |
| 62) |
3.59 + 5 |
8.59 |
| 63) |
8917 - 39 |
8878 |
| 64) |
9 * 0.009 |
0.081 |
| 65) |
69.4 - 2 |
67.4 |
| 66) |
58 + 21.2 |
79.2 |
| 67) |
-3 - -0.04 |
-2.96 |
| 68) |
2.3 + -0.047 |
2.253 |
| 69) |
61 - 59 |
2 |
| 70) |
-0.009 * -21 |
0.189 |
| 71) |
-32.8 * -7 |
229.6 |
| 72) |
0.62 / 1 |
0.62 |
| 73) |
401 - 193 |
208 |
| 74) |
3 * 4.08 |
12.24 |
| 75) |
-1 - -51 |
50 |
| 76) |
-65.4 - 9 |
-74.4 |
| 77) |
0.3 * -8.2 |
-2.46 |
| 78) |
-0.002 - 0.008 |
-0.01 |
| 79) |
92.28 - -4.4 |
96.68 |
| 80) |
4.7 + -9 |
-4.3 |
|
|
Quick links:
Practice:
Easy |
Medium |
Hard
Test:
Easy |
Medium |
Hard
Customized