
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) |
84.24 + 8 |
92.24 |
| 2) |
30 * 0.09 |
2.7 |
| 3) |
60 - -363 |
423 |
| 4) |
0.3 * 4 |
1.2 |
| 5) |
488 + -66 |
422 |
| 6) |
3 * 2.7 |
8.1 |
| 7) |
52 + 35.35 |
87.35 |
| 8) |
-0.3 / 0.2 |
-1.5 |
| 9) |
-69.6 + -0.7 |
-70.3 |
| 10) |
6 - 2 |
4 |
| 11) |
6.28 * 0.9 |
5.652 |
| 12) |
0.61 + 16 |
16.61 |
| 13) |
-0.007 - -0.1 |
0.093 |
| 14) |
-4.37 - -77 |
72.63 |
| 15) |
0.01 * 4272 |
42.72 |
| 16) |
4 / 0.2 |
20 |
| 17) |
667 * -1 |
-667 |
| 18) |
-5 + 2358 |
2353 |
| 19) |
145 * 24 |
3480 |
| 20) |
0.09 + 1 |
1.09 |
| 21) |
173 + -1169 |
-996 |
| 22) |
4 - -5.52 |
9.52 |
| 23) |
86.8 + 0.13 |
86.93 |
| 24) |
-76 - -14 |
-62 |
| 25) |
4 + -2.972 |
1.028 |
| 26) |
-0.3 - 31 |
-31.3 |
| 27) |
8.45 + 0.253 |
8.703 |
| 28) |
880.5 + 9.2 |
889.7 |
| 29) |
34 + 8726 |
8760 |
| 30) |
989 - 174 |
815 |
| 31) |
-115 + 1013 |
898 |
| 32) |
-3.4 * 6 |
-20.4 |
| 33) |
8 + 71 |
79 |
| 34) |
3 + 4 |
7 |
| 35) |
0.158 - -0.004 |
0.162 |
| 36) |
6.9 - -475 |
481.9 |
| 37) |
0.07 - 4 |
-3.93 |
| 38) |
9 + 0.45 |
9.45 |
| 39) |
-266 - 73 |
-339 |
| 40) |
64 * 2 |
128 |
| 41) |
33.8 - -89.4 |
123.2 |
| 42) |
1.174 + 1 |
2.174 |
| 43) |
7 * 72 |
504 |
| 44) |
7 + 50 |
57 |
| 45) |
-8.5 - 5.4 |
-13.9 |
| 46) |
65 + 8 |
73 |
| 47) |
150 - 7 |
143 |
| 48) |
-1.4 + 8 |
6.6 |
| 49) |
107 * 0.006 |
0.642 |
| 50) |
790 + 5 |
795 |
| 51) |
8592 - 4 |
8588 |
| 52) |
-33 + 147 |
114 |
| 53) |
17.3 + 0.7 |
18 |
| 54) |
0.444 - -0.09 |
0.534 |
| 55) |
-6 + 809 |
803 |
| 56) |
411 / -30 |
-13.7 |
| 57) |
-0.001 + 0.099 |
0.098 |
| 58) |
44 - -5865 |
5909 |
| 59) |
66 - 9 |
57 |
| 60) |
0.019 + 0.22 |
0.239 |
| 61) |
-4 - 61.3 |
-65.3 |
| 62) |
0.734 / 0.1 |
7.34 |
| 63) |
-15.34 + 87.7 |
72.36 |
| 64) |
8.9 + 8 |
16.9 |
| 65) |
-243 - 8 |
-251 |
| 66) |
1900 + -4 |
1896 |
| 67) |
-1 - -43 |
42 |
| 68) |
16 + -72.3 |
-56.3 |
| 69) |
18 + 9536 |
9554 |
| 70) |
13 - 6.3 |
6.7 |
| 71) |
7 + 35 |
42 |
| 72) |
0.7 + 0.068 |
0.768 |
| 73) |
67.19 - 9 |
58.19 |
| 74) |
-7 + -442 |
-449 |
| 75) |
2 - 0.01 |
1.99 |
| 76) |
5.5 * 1 |
5.5 |
| 77) |
0.05 - -0.041 |
0.091 |
| 78) |
90 + 7137 |
7227 |
| 79) |
2.5 * 6.1 |
15.25 |
| 80) |
0.4 - 0.24 |
0.16 |
|
|
Quick links:
Practice:
Easy |
Medium |
Hard
Test:
Easy |
Medium |
Hard
Customized