start

Recherche

Voici les résultats de votre recherche.

articles_didactique_chimie
250 Occurrences trouvées, Dernière modification :
-online|Journal of Chemical Education - Resources for Teaching Your Chemistry Class Online: A Free to R... d'articles]] sur : * Constructivism as a Lens for Understanding Student Learning * Student Conc... /acs.jchemed.3c00413|How Effective are Indicators for Individuals with Color Vision Deficiency? | Journ... in Chemistry and Chemical Education: A Framework for Meaningful Conceptual Learning and Competence in
psychologie_de_l_education
126 Occurrences trouvées, Dernière modification :
body of literature addressing other uses of tests for educational purposes, including for formative and summative assessment. The research discussed in this special issue has important implications for the science of learning, teaching practices, and ... earch, Theoretical Perspectives, and Implications for Educational Practice | Educational Psychology Rev
desinformations
97 Occurrences trouvées, Dernière modification :
ress, anything can happen. What makes it possible for a totalitarian or any other dictatorship to rule ... get not only one lie—a lie which you could go on for the rest of your days—but you get a great number ... [https://www.criticalthinking.org/|The Foundation for Critical Thinking]] * [[https://www.criticalt... r. Richard Paul & Dr. Linda Elder, The Foundation for Critical Thinking, 2008 * Belgique * [[http
stackexchange-chimie
69 Occurrences trouvées, Dernière modification :
r-observed-after-boiling-water-in-electric-kettle-for-many-weeks|White powder observed after boiling water in electric kettle for many weeks]] * [[http://chemistry.stackexchange... 2/why-is-phenolphthalein-an-appropriate-indicator-for-titration-of-a-strong-acid-w|Why is phenolphthalein an appropriate indicator for titration of a strong acid with a strong base?]]
calcul_matriciel_2012 @teaching:progappchim
66 Occurrences trouvées, Dernière modification :
Mlin=len(M) result=[] Rep=[] for i in range(Mlin): if i!=m: for j in range(Mlin): if j!=n... # ligne ou n ième colonne for k in range(0,len (result),Mlin-1): Re... ourne la transposée de la matrice""" s=[] for i in range(len(n[0])): #correspond à la dimension
notions_fondamentales @teaching:progappchim
31 Occurrences trouvées, Dernière modification :
tilisés par le langage lui-même (if, elif, while, for, else, print,...). * Instruction d'**affectatio... print(a, a**2, a**3) </code> L'**instruction for** ([[https://docs.python.org/3/reference/compound_stmts.html#for|documentation officielle]]) permet d'itérer sur u... ne séquence "chaîne de caractères". <code python> for i in range(11): print(i, i**2, i**3) </code>
biblio-10.1007-s10648-021-09646-1
27 Occurrences trouvées, Dernière modification :
/S1747938X23000295|Let’s talk evidence – The case for combining inquiry-based and direct instruction - ... ry-based instruction and reproached policy makers for ignoring this fact. In the current article we rep... based instruction produces better overall results for acquiring conceptual knowledge than does direct instruction. We show that this conclusion holds for controlled, correlational, and program-based stud
teaching_ressources_videos
25 Occurrences trouvées, Dernière modification :
luebutton.org/]] web conferencing system designed for online learning * [[https://bigbluebutton.org/teachers/|BigBlueButton For Teachers]] * conversions de vidéos : * [[ht... ttps://medium.com/mit-media-lab/a-few-simple-tips-for-better-online-meetings-covid-19-edition-385af7bec... skubuntu.com/questions/829765/how-to-record-voice-for-a-slide-in-libreoffice-impress]] * documents pa
simulations_random_walks_codes @teaching:exos
21 Occurrences trouvées, Dernière modification :
valeurpiece = [0.01,0.02,0.05,0.1,0.2,0.5,1.,2.] for i in range(1): # choice : random choice of an... ock value to "randomly" initiate the generator ! for j in range(3): #seed('ma chaîne personnielle'... seed() # to randomly initiate the generator for i in range(10): print(randint(1000,9999))... # reproducible initialization seed() rval = [] for j in range(100000): rval.append(randint(0,99)
bioinformatic @teaching:progappchim
19 Occurrences trouvées, Dernière modification :
de la méthode .count() bases = ["A","C","G","T"] for base in bases: print(adn.count(base),) print() # Variante : for c in 'ACGT': print(adn.count(c),) print() # variante un peu moins lisible out = [] for c in 'ACGT': out.append(str(adn.count(c))) pr... hnique "list comprehension" count = [adn.count(c) for c in 'ACGT'] for val in count: print(val,) pr
matplotlib_simple @teaching:progappchim
18 Occurrences trouvées, Dernière modification :
,1.,2.,3.,5.,7.,11.,13.,17.,19.] serie_y1 = [x**2 for x in serie_x] # ces lignes utilisent la techn... ue de "liste en compréhension" serie_y2 = [x**1.5 for x in serie_x] # pour définir efficacement une l... 3., 5., 7., 11., 13., 17., 19.] serie_y1 = [x**2 for x in serie_x] serie_y2 = [x**1.5 for x in serie_x] plt.xlim(0, 20.) #les limites suivant x plt.ylim
pandas @teaching:progappchim
18 Occurrences trouvées, Dernière modification :
blog/python-pandas-cheat-sheet|Pandas Cheat Sheet for Data Science in Python]] ===== Applications, exe... hout white spaces names = [name.replace(' ', '_') for name in names] print(names) namesfr = [ 'Lar... e most popular repositories to brush up on Pandas for beginners and experts alike]] Byron Dolon, Medium... itHub - ajcr/100-pandas-puzzles: 100 data puzzles for pandas, ranging from short and simple to super tr
publis_diverses
17 Occurrences trouvées, Dernière modification :
ter with Automatic Data Acquisition Using Arduino for Secondary School: Development and Validation with... /acs.jchemed.2c00665|Interactive Python Notebooks for Physical Chemistry]] * [[https://pubs.acs.org/d... ductory Computing: Solving Schrödinger’s Equation for the Hydrogen Atom]] Oka Kurniawan, Li Ling Apple ... 30|Realistic Implementation of the Particle Model for the Visualization of Nanoparticle Precipitation a
polynomes-10 @teaching:progappchim
17 Occurrences trouvées, Dernière modification :
départ n = len(b) -1 #ordre du polynôme for i in range (n+1): b[i] = b[i] * i #on re... #Nouvelle liste dont le premier terme vaut 0. for coef in range(len(a)): #Pour tout les coeffici... ion == ordre du polynôme avant intégration +1 for i in range (n): # on balaie sur toutes les puiss... : while(len(c)<p+1): c.append(0) for k in range(p+1): # pour toutes les pui
5_conceptions_erronees_courantes_sur_l_apprentissage
15 Occurrences trouvées, Dernière modification :
d programmes in science, mathematics and history. For instance, [[http://www.telegraph.co.uk/education/... ual behaviour of experts. This may not be optimal for learning but it could have value as part of a ran... f experts might not even reflect what experts do. For instance, the use of [[http://files.eric.ed.gov/f... u understand concepts better if you discover them for yourself ===== I recently fixed the toilet. It w
game_of_life_conway-2012 @teaching:progappchim
15 Occurrences trouvées, Dernière modification :
ressourceschimie
14 Occurrences trouvées, Dernière modification :
adamboxer-approche_pas_a_pas_des_travaux_pratiques
13 Occurrences trouvées, Dernière modification :
the_need_for_a_theory_of_learning
13 Occurrences trouvées, Dernière modification :
methcalchim @teaching:methcalchim
13 Occurrences trouvées, Dernière modification :
poker_menteur @teaching:exos
12 Occurrences trouvées, Dernière modification :
plotly_simple @teaching:progappchim
12 Occurrences trouvées, Dernière modification :
presentation_principes @teaching:progappchim
11 Occurrences trouvées, Dernière modification :
notions_avancees @teaching:progappchim
10 Occurrences trouvées, Dernière modification :
suite_de_fibonacci-3 @teaching:progappchim
9 Occurrences trouvées, Dernière modification :
articles_didactique_chimie-george_m_bodner
8 Occurrences trouvées, Dernière modification :
kirschner-how_teaching_happens
8 Occurrences trouvées, Dernière modification :
paradoxe_anniversaires @teaching:exos
8 Occurrences trouvées, Dernière modification :
algos_entiers @teaching:progappchim
8 Occurrences trouvées, Dernière modification :
mendeleev @teaching:progappchim
8 Occurrences trouvées, Dernière modification :
solubilite_ph_t @teaching:progappchim
8 Occurrences trouvées, Dernière modification :
numerical_methods_for_ordinary_differential_equations @teaching:methcalchim
7 Occurrences trouvées, Dernière modification :
ensemble_mandelbrot_2013 @teaching:progappchim
7 Occurrences trouvées, Dernière modification :
polynomes-7 @teaching:progappchim
7 Occurrences trouvées, Dernière modification :
polynomes-11 @teaching:progappchim
7 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.chemrev.8b00020
6 Occurrences trouvées, Dernière modification :
kirschner-how_learning_happens
6 Occurrences trouvées, Dernière modification :
lancer_pieces @teaching:exos
6 Occurrences trouvées, Dernière modification :
numpy_simple @teaching:progappchim
6 Occurrences trouvées, Dernière modification :
pavage_penrose_2013 @teaching:progappchim
6 Occurrences trouvées, Dernière modification :
representation_molecules_2013 @teaching:progappchim
6 Occurrences trouvées, Dernière modification :
progappchim @teaching:progappchim
6 Occurrences trouvées, Dernière modification :
tkinter_gui_simple @teaching:progappchim
6 Occurrences trouvées, Dernière modification :
system_of_linear_equations @teaching:methcalchim
5 Occurrences trouvées, Dernière modification :
epidemie_coronavirus @teaching:progappchim
5 Occurrences trouvées, Dernière modification :
lennard-jones @teaching:progappchim
5 Occurrences trouvées, Dernière modification :
ph_acides_bases_2013 @teaching:progappchim
5 Occurrences trouvées, Dernière modification :
polynomes-4 @teaching:progappchim
5 Occurrences trouvées, Dernière modification :
polynomes-8 @teaching:progappchim
5 Occurrences trouvées, Dernière modification :
rotation_vibration_molecules_biatomiques @teaching:exos
4 Occurrences trouvées, Dernière modification :
sequences_brins_adn @teaching:exos
4 Occurrences trouvées, Dernière modification :
elements_molecules @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
factorielle-3 @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
polynomes-5 @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
polynomes-bonus @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
solvents_data_class @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
suite_de_fibonacci-4 @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
tableau_periodique_2013 @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
tris @teaching:progappchim
4 Occurrences trouvées, Dernière modification :
initinfo
3 Occurrences trouvées, Dernière modification :
dictionaries_adn_arn_protein @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
grille_configurations_melange_binaire_2013 @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
matrices @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
openbabel_jmol @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
scikit_learn @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
tableau_periodique_2011 @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
trucs_astuces @teaching:progappchim
3 Occurrences trouvées, Dernière modification :
pka_pkb_plane @teaching:progappchim:matplotlib_gallery
3 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.5b00729
2 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.6b00261
2 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed074p262_10.1039-b801297k
2 Occurrences trouvées, Dernière modification :
biblio-10.1039-c0rp90006k
2 Occurrences trouvées, Dernière modification :
biblio-10.1039_c0rp90007a
2 Occurrences trouvées, Dernière modification :
biblio-10.1207-s15516709cog0502_2
2 Occurrences trouvées, Dernière modification :
biblio-didactique-chimie
2 Occurrences trouvées, Dernière modification :
cuisine_moleculaire
2 Occurrences trouvées, Dernière modification :
exos_energie_d_ionisation
2 Occurrences trouvées, Dernière modification :
mercure
2 Occurrences trouvées, Dernière modification :
protoxyde_azote
2 Occurrences trouvées, Dernière modification :
revision_cheat_sheets
2 Occurrences trouvées, Dernière modification :
rappels-proba-stat @teaching:exos
2 Occurrences trouvées, Dernière modification :
thermodynamique_statistique-exercices @teaching:exos
2 Occurrences trouvées, Dernière modification :
numerical_integration @teaching:methcalchim
2 Occurrences trouvées, Dernière modification :
analyse_images @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
collection_counter_exemple @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
conversion_temperature_2011 @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
csv @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
fizz_buzz @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
glossaire_chimie @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
jupyter @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
koch_snowflake @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
math_nombres @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
osm_interrogation @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
ph-3d @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
plot_sinus_cosinus @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
polynomes-6 @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
polynomes-9 @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
scipy_simple @teaching:progappchim
2 Occurrences trouvées, Dernière modification :
potentiel_morse @teaching:progappchim:matplotlib_gallery
2 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.0c00099
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.0c00185
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.0c00361
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.0c00952
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.5b00635
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.6b00361
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.6b00400
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.6b00624
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.6b00676
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.6b00776
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.6b01024
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.7b00226
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-acs.jchemed.7b00849
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed083p1182
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed083p1479
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed084p1140
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed086p1433
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed300456y
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed400128x
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed400851m
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed400901x
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed500401d
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed500658s
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed3002336
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed3004462
1 Occurrences trouvées, Dernière modification :
biblio-10.1021-ed4003578
1 Occurrences trouvées, Dernière modification :
biblio-10.1039-c005464j
1 Occurrences trouvées, Dernière modification :
biblio-10.1039-c7rp00135e
1 Occurrences trouvées, Dernière modification :
biblio-9780321611956-chap14
1 Occurrences trouvées, Dernière modification :
biblio-9782916032924
1 Occurrences trouvées, Dernière modification :
carbone
1 Occurrences trouvées, Dernière modification :
hydrogene
1 Occurrences trouvées, Dernière modification :
timeline-chimie
1 Occurrences trouvées, Dernière modification :
uranium
1 Occurrences trouvées, Dernière modification :
videos_chimie_sg
1 Occurrences trouvées, Dernière modification :
partial_differential_equation @teaching:methcalchim
1 Occurrences trouvées, Dernière modification :
root-finding_algorithm @teaching:methcalchim
1 Occurrences trouvées, Dernière modification :
collection_namedtuple_exemple @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
dictionary_adn_protein @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
diffusion_chimique_1d @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
fit_modele_einstein @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
maxwell-boltzmann @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
multilateration @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
polynomes-2 @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
polynomes-3 @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
polynomes-12 @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
urllib @teaching:progappchim
1 Occurrences trouvées, Dernière modification :
ir_spectrum_co @teaching:progappchim:matplotlib_gallery
1 Occurrences trouvées, Dernière modification :
potentiel_energy_surface @teaching:progappchim:matplotlib_gallery
1 Occurrences trouvées, Dernière modification :
rotateur_biatomique @teaching:progappchim:matplotlib_gallery
1 Occurrences trouvées, Dernière modification :
  • start.txt
  • Dernière modification : 2021/09/09 08:56
  • de villersd