Answer:
Explanation:
See the file attached .
b ) Range of projectile
= u²sin2θ / g
= 42² sin32 x 2 / g
= 42² sin64 / 9.8
= 161.8 m
c )
Max height = u² sin²32 / 2 g
= 42² sin²32 / 2x 9.8
= 25.27 m .
Answer:
// EDU HACK REDDIT EDITON //
if (running == null) {
var running = null; console.log("Program Loading...");
var iframe = document.getElementById("stageFrame");
for (i = 0; i < 1; i++) {
setInterval(function() {
if (running == null) { running = true; console.log('Program Loaded! Enjoy!') }
if (iframe.contentWindow.document.getElementsByClassName('FrameRight') != null) { iframe.contentWindow.document.getElementsByClassName('FrameRight')[0].onclick(); }
if (iframe.contentWindow.document.getElementById("invis-o-div") != null) { iframe.contentWindow.document.getElementById("invis-o-div").remove(); }
},1000);
}
} else {
console.log("Program already running!")
}
Explanation:
Hello!
Everything you've done so far seems to be correct. However, you need to get rid of the sin. To do this, use s
.
This is known as the inverse of sin, which is where you go from a fraction to the actual angle itself.
When you run
through a calculator, you get about 11.537 degrees, or θ = 11.537.
To verify this, all you need to do is run sin (11.537), and the calculator returns 0.2, which is what we're looking for.
Hope this helps!