
De quoi mettre le paquet sur les révisions de SVT ce week-end avec les deux sujets d'Amérique du Nord et du Liban !

Téléchargement : BAC S 2014 - Annales des sujets inédits 2013-2014
Science Friction!, une activité TI-Nspire™ de maths et de science fondée sur des comics et films d'actions, met les étudiants dans le rôle de sbires d'un scélérat qui expérimentent avec des substances différentes pour déjouer un super héros "STEM-tastique".
Idéal pour l'apprentissage des sciences physiques et de l'algèbre, la simulation permet d'expérimenter avec l'huile, l'eau et la glace afin de déterminer quel élément est le plus efficace pour ralentir le super héros pour l'empêcher de "sauver le monde".
L'activité a été développée en collaboration avec Adam Weiner, professeur de Physique au Lycée, speaker, et auteur de "Don’t Try This at Home! The Physics of Hollywood Movies.".
Science Friction! encourage les élèves à explorer les deuxième et troisième lois de Newton en les engageant dans les concepts de force et de friction.
Dans l'activité, les élèves utilisent l'application Données & Statistiques de la technologie TI-Nspire pour déterminer la masse d'un objet à partir de la force et des données d'accélération, et pour calculer la force de frottement statique maximale pour les différentes surfaces afin d'expliquer ce qui se passe au super-héro dans la simulation.
TI (en anglais) wrote:Show/Hide spoilerAfficher/Masquer le spoiler
Science Friction!, a TI-Nspire™ math and science activity grounded in an enduring action comics and film genre, puts students in the role of an arch-villain’s minions who experiment with different substances to foil a STEM-tastic Superhero.
Appropriate for Physical Science and Algebra 1 students, the simulation lets them test oil, water and ice to determine which is most effective at slowing down the Superhero to keep him from saving the day.
The activity was developed in collaboration with Adam Weiner, a high school physics educator, public speaker, and the author of “Don’t Try This at Home! The Physics of Hollywood Movies.”
Science Friction! encourages students to explore Newton’s second and third laws of motion by engaging them in the STEM concepts of force and friction.
In the activity, students use TI-Nspire technology’s Data & Statistics application to determine the mass of an object from force and acceleration data and calculate the maximum static friction force for the various surfaces to explain what happens to the Superhero in the simulation.
platform.apilevel = '2.4'
-- Quick speed test with a bouncing square
-- Adriweb - tiplanet.org
local dirX, dirY = 1, 1
local x, y = 0, 0 -- will be overwritten
local hits = 0
local side = 20
local startTime, endTime = 0, 0
local running = false
local finished = false
function on.resize(w, h)
W, H = w, h
x, y = .5*w, .5*h
end
function on.timer()
x, y = x+2*dirX, y+2*dirY
if x>=W-side or x<=0 then hits = hits + 1; dirX = -dirX end
if y>=H-side or y<=0 then hits = hits + 1; dirY = -dirY end
if hits == 25 then
timer.stop(); running = false; finished = true
endTime = timer.getMilliSecCounter()
end
platform.window:invalidate()
end
function on.paint(gc)
gc:fillRect(x, y, side, side)
gc:drawString(hits, 5, 5, "top")
if finished then gc:drawString((endTime-startTime)/1000, 5, H-25, "top") end
end
function on.enterKey()
if running then
timer.stop()
else
startTime = timer.getMilliSecCounter()
finished = false
timer.start(0.01)
end
running = not running
end
function on.escapeKey()
timer.stop()
running = false; finished = false
hits = 0
dirX, dirY = 1, 1
x, y = .5*W, .5*H
platform.window:invalidate()
end