"added arc_length"

This commit is contained in:
ee17b031-iittp
2020-10-25 16:41:49 +05:30
parent 7502278b4a
commit d88198ad12
2 changed files with 2 additions and 2 deletions

View File

@@ -138,4 +138,4 @@ problem, solution = mathgen.genById(0)
| 104 | Circumference | Circumference of circle with radius 60 | 376.99111843077515 | circumference | | 104 | Circumference | Circumference of circle with radius 60 | 376.99111843077515 | circumference |
| 105 | Combine Like terms | 4x^4 + 6x^4 + 9x^1 + 3x^1 + 5x^4 + 10x^3 | 12x^1 + 10x^3 + 15x^4 | combine_like_terms | | 105 | Combine Like terms | 4x^4 + 6x^4 + 9x^1 + 3x^1 + 5x^4 + 10x^3 | 12x^1 + 10x^3 + 15x^4 | combine_like_terms |
| 105 | Conditional Probability | Someone tested positive for a nasty disease which only 1.34% of population have. Test sensitivity (true positive) is equal to SN= 98.05% whereas test specificity (true negative) SP= 92.32%. What is the probability that this guy really has that disease? | 14.78% | conditional_probability | | 105 | Conditional Probability | Someone tested positive for a nasty disease which only 1.34% of population have. Test sensitivity (true positive) is equal to SN= 98.05% whereas test specificity (true negative) SP= 92.32%. What is the probability that this guy really has that disease? | 14.78% | conditional_probability |
| 106 | Arc Length of an Angle | arc length of an angle with radius = 4.5m and angle = 45 | 3.5357142 | arc_length | | 106 | Arc Length of an Angle | arc length of an angle with radius = 4.5m and angle = 45 | 3.5357142 | arc_length |

View File

@@ -11,4 +11,4 @@ def arclengthFunc(maxRadius=49, maxAngle=359):
return problem, solution return problem, solution
arc_length = Generator("Arc length of Angle", 106, " Given the radius, r and angle, ang. Calculate the arc length of the given angle", "(ang/360) * 2 * pi * r", arclengthFunc) arc_length = Generator("Arc length of Angle", 106, " Given the radius, r and angle, ang. Calculate the arc length of the given angle", "(ang/360) * 2 * pi * r", arclengthFunc)