
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) |
3 + 0.8 |
3.8 |
| 2) |
768 + 0.5 |
768.5 |
| 3) |
-29 * -0.152 |
4.408 |
| 4) |
0.01 * 77 |
0.77 |
| 5) |
0.09 + 1.6 |
1.69 |
| 6) |
-548 + 208 |
-340 |
| 7) |
7 * -46 |
-322 |
| 8) |
53 * -0.09 |
-4.77 |
| 9) |
4.76 + -4.442 |
0.318 |
| 10) |
0.004 + 9 |
9.004 |
| 11) |
-0.13 - -9.5 |
9.37 |
| 12) |
-98 * -45 |
4410 |
| 13) |
60 - -935 |
995 |
| 14) |
-4 * -75 |
300 |
| 15) |
28 - -66.3 |
94.3 |
| 16) |
-74 / 0.08 |
-925 |
| 17) |
0.04 + -3 |
-2.96 |
| 18) |
8 * 5 |
40 |
| 19) |
-0.003 + 7 |
6.997 |
| 20) |
-0.1 - -0.624 |
0.524 |
| 21) |
6.804 + 0.002 |
6.806 |
| 22) |
169 / 0.04 |
4225 |
| 23) |
0.5 * 5222 |
2611 |
| 24) |
6.2 - 1 |
5.2 |
| 25) |
0.8 * 71.8 |
57.44 |
| 26) |
5319 - 9 |
5310 |
| 27) |
2569 - 3 |
2566 |
| 28) |
-0.5 * 5 |
-2.5 |
| 29) |
7105 + -1 |
7104 |
| 30) |
7.5 - 87 |
-79.5 |
| 31) |
73 - 16 |
57 |
| 32) |
-0.001 + 8.6 |
8.599 |
| 33) |
0.852 - 0.098 |
0.754 |
| 34) |
31 + 3 |
34 |
| 35) |
-0.25 + 0.64 |
0.39 |
| 36) |
1.35 - -5.14 |
6.49 |
| 37) |
0.006 * 128 |
0.768 |
| 38) |
-154 + 71 |
-83 |
| 39) |
-0.09 - 2 |
-2.09 |
| 40) |
1.2 - 0.08 |
1.12 |
| 41) |
0.05 + 0.955 |
1.005 |
| 42) |
0.7 - -0.06 |
0.76 |
| 43) |
-7.38 + 36.2 |
28.82 |
| 44) |
0.201 - -0.06 |
0.261 |
| 45) |
-9 * 3 |
-27 |
| 46) |
6.633 - 0.096 |
6.537 |
| 47) |
7 * 527 |
3689 |
| 48) |
3 * 62.7 |
188.1 |
| 49) |
-7 * 6.4 |
-44.8 |
| 50) |
7 - -0.09 |
7.09 |
| 51) |
1 + -0.602 |
0.398 |
| 52) |
-0.2 - -0.03 |
-0.17 |
| 53) |
0.04 - -0.2 |
0.24 |
| 54) |
30 * -7 |
-210 |
| 55) |
3.09 + -9.81 |
-6.72 |
| 56) |
-0.08 + 0.7 |
0.62 |
| 57) |
-7 - 12 |
-19 |
| 58) |
47 * -0.2 |
-9.4 |
| 59) |
-5 - 0.01 |
-5.01 |
| 60) |
28.6 + -8 |
20.6 |
| 61) |
0.004 * 34 |
0.136 |
| 62) |
8.604 - 0.007 |
8.597 |
| 63) |
-0.382 + 0.798 |
0.416 |
| 64) |
-0.08 * 107 |
-8.56 |
| 65) |
7.567 - 2 |
5.567 |
| 66) |
0.007 * 849 |
5.943 |
| 67) |
59.7 + 2 |
61.7 |
| 68) |
0.07 - -0.002 |
0.072 |
| 69) |
6.1 + 1.8 |
7.9 |
| 70) |
121.1 + 29 |
150.1 |
| 71) |
9 + 0.003 |
9.003 |
| 72) |
0.08 - -83 |
83.08 |
| 73) |
37 * 0.051 |
1.887 |
| 74) |
0.126 * 3 |
0.378 |
| 75) |
-63 + 524.4 |
461.4 |
| 76) |
-92 * 3 |
-276 |
| 77) |
518 / 4 |
129.5 |
| 78) |
774 / 0.1 |
7740 |
| 79) |
5.7 / 4 |
1.425 |
| 80) |
1 * 0.6 |
0.6 |
|
|
Quick links:
Practice:
Easy |
Medium |
Hard
Test:
Easy |
Medium |
Hard
Customized