
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) |
-48 - 7 |
-55 |
| 2) |
7.687 + 1.7 |
9.387 |
| 3) |
7 - -862.4 |
869.4 |
| 4) |
7 + -473 |
-466 |
| 5) |
-12.22 + 8 |
-4.22 |
| 6) |
30.2 + -9.37 |
20.83 |
| 7) |
2 - 30 |
-28 |
| 8) |
9.1 - 8.785 |
0.315 |
| 9) |
6.42 * 20 |
128.4 |
| 10) |
16 + 0.01 |
16.01 |
| 11) |
5 + -7 |
-2 |
| 12) |
-5 * 6 |
-30 |
| 13) |
-1.68 - 1 |
-2.68 |
| 14) |
2 + 0.707 |
2.707 |
| 15) |
-17 * 29 |
-493 |
| 16) |
3 - -62 |
65 |
| 17) |
4737 * 2 |
9474 |
| 18) |
819 + 4 |
823 |
| 19) |
-1.5 + 9 |
7.5 |
| 20) |
718.8 - 361 |
357.8 |
| 21) |
9060 + 33 |
9093 |
| 22) |
9133 - 3 |
9130 |
| 23) |
96 / 1 |
96 |
| 24) |
413 - 178.1 |
234.9 |
| 25) |
8868 * 0.5 |
4434 |
| 26) |
47.16 - -14 |
61.16 |
| 27) |
0.3 + 0.005 |
0.305 |
| 28) |
0.009 * 448 |
4.032 |
| 29) |
9 * -91 |
-819 |
| 30) |
76 + 20 |
96 |
| 31) |
-155 - -78 |
-77 |
| 32) |
80.54 - 8 |
72.54 |
| 33) |
-31.3 - -49.27 |
17.97 |
| 34) |
875 - 4 |
871 |
| 35) |
9.29 + 90.2 |
99.49 |
| 36) |
700 * 0.1 |
70 |
| 37) |
0.41 + 0.071 |
0.481 |
| 38) |
1 * 4939 |
4939 |
| 39) |
9.4 - -6.74 |
16.14 |
| 40) |
-0.008 / 0.005 |
-1.6 |
| 41) |
-9 - 4 |
-13 |
| 42) |
-0.04 - -69.3 |
69.26 |
| 43) |
4042 + 90 |
4132 |
| 44) |
0.7 - 51 |
-50.3 |
| 45) |
-3 + -0.8 |
-3.8 |
| 46) |
0.09 - -91 |
91.09 |
| 47) |
7.1 * 13 |
92.3 |
| 48) |
1 + 27.7 |
28.7 |
| 49) |
0.1 * 260 |
26 |
| 50) |
-0.02 - -0.053 |
0.033 |
| 51) |
996 + 5 |
1001 |
| 52) |
0.531 - -6 |
6.531 |
| 53) |
38 * 4 |
152 |
| 54) |
0.06 * -0.5 |
-0.03 |
| 55) |
-41.6 - -6 |
-35.6 |
| 56) |
5 + 45.96 |
50.96 |
| 57) |
50.1 * 3 |
150.3 |
| 58) |
18 - 0.2 |
17.8 |
| 59) |
88 * -1 |
-88 |
| 60) |
25 - -694 |
719 |
| 61) |
86.5 - -0.01 |
86.51 |
| 62) |
-0.033 / -0.01 |
3.3 |
| 63) |
-3.7 + -0.23 |
-3.93 |
| 64) |
346 + 8 |
354 |
| 65) |
8 + -48.8 |
-40.8 |
| 66) |
0.6 + -4.5 |
-3.9 |
| 67) |
887 - 760 |
127 |
| 68) |
8 * 629 |
5032 |
| 69) |
595 - 3.8 |
591.2 |
| 70) |
-0.034 * -28 |
0.952 |
| 71) |
2 - 0.001 |
1.999 |
| 72) |
96.6 + -42.48 |
54.12 |
| 73) |
-0.7 * 5 |
-3.5 |
| 74) |
5.93 + -3 |
2.93 |
| 75) |
0.5 + 8 |
8.5 |
| 76) |
1 - 6 |
-5 |
| 77) |
631 - -48.7 |
679.7 |
| 78) |
66 + 827 |
893 |
| 79) |
11.78 / 0.1 |
117.8 |
| 80) |
14.93 - -57.4 |
72.33 |
|
|
Quick links:
Practice:
Easy |
Medium |
Hard
Test:
Easy |
Medium |
Hard
Customized