Problem 56318. Predict Cricket Stridulation Rate from Air Temperature
- Crickets generally do not sing at temperatures below 55 F or above 100 F. (https://entomology.unl.edu/k12/crickets/temperature.htm)
- Crickets go into hibernation phase when temperature drops below 32°F (https://www.cricketsmode.com/when-do-crickets-die/)
- Crickets die when temperature drops below 18°F (-8°C) for 24 hours or longe
Solution Stats
Problem Comments
-
3 Comments
You should probably put "Use this formula to [predict] the number of chirps in 28 seconds for a given air temperature in Fahrenheit." in boldface.
There is an overlapping condition:
return 0 if T>100 or T<55
return -1 if 18<T=<55
For this problem to make sense, the sentence
"Return a -1 if the cricket is most likely hibernating (18 < T <=55)"
should be
"Return a -1 if the cricket is most likely hibernating (18 < T < 32)".
Solution Comments
Show commentsProblem Recent Solvers398
Suggested Problems
-
Project Euler: Problem 9, Pythagorean numbers
1301 Solvers
-
Create a vector whose elements depend on the previous element
712 Solvers
-
Return fibonacci sequence do not use loop and condition
688 Solvers
-
Create sequnce 1 4 9 16 25.........
392 Solvers
-
1816 Solvers
More from this Author10
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!