欧美色欧美亚洲高清在线观看,国产特黄特色a级在线视频,国产一区视频一区欧美,亚洲成a 人在线观看中文

  1. <ul id="fwlom"></ul>

    <object id="fwlom"></object>

    <span id="fwlom"></span><dfn id="fwlom"></dfn>

      <object id="fwlom"></object>

      山東省高中數(shù)學(xué)(新課標(biāo)人教A版)必修三《1.2.3 循環(huán)語句》教案

      時(shí)間:2019-05-12 20:55:46下載本文作者:會(huì)員上傳
      簡(jiǎn)介:寫寫幫文庫(kù)小編為你整理了多篇相關(guān)的《山東省高中數(shù)學(xué)(新課標(biāo)人教A版)必修三《1.2.3 循環(huán)語句》教案》,但愿對(duì)你工作學(xué)習(xí)有幫助,當(dāng)然你在寫寫幫文庫(kù)還可以找到更多《山東省高中數(shù)學(xué)(新課標(biāo)人教A版)必修三《1.2.3 循環(huán)語句》教案》。

      第一篇:山東省高中數(shù)學(xué)(新課標(biāo)人教A版)必修三《1.2.3 循環(huán)語句》教案

      1.2.3循環(huán)語句

      整體設(shè)計(jì)

      教學(xué)分析

      通過前面的學(xué)習(xí),學(xué)生學(xué)會(huì)了輸入語句、輸出語句、賦值語句和條件語句的基本用法,本節(jié)將介紹循環(huán)語句的用法.程序中的循環(huán)語句與程序框圖中的循環(huán)結(jié)構(gòu)存在一一對(duì)應(yīng)關(guān)系,這種對(duì)應(yīng)關(guān)系對(duì)于學(xué)生理解循環(huán)語句的結(jié)構(gòu),進(jìn)一步理解算法中的循環(huán)結(jié)構(gòu)都是很有幫助的.我們可以給出循環(huán)語句的一般格式,讓學(xué)生自己畫出相應(yīng)的程序框圖,也可以給出程序框圖,讓學(xué)生寫出算法語句,提高學(xué)生的應(yīng)用能力.三維目標(biāo)

      1.理解學(xué)習(xí)基本算法語句的意義.2.學(xué)會(huì)循環(huán)語句的基本用法.3.理解算法步驟、程序框圖和算法語句的關(guān)系,學(xué)會(huì)算法語句的寫法.重點(diǎn)難點(diǎn)

      教學(xué)重點(diǎn):循環(huán)語句的基本用法.教學(xué)難點(diǎn):循環(huán)語句的寫法.課時(shí)安排1課時(shí)

      教學(xué)過程

      導(dǎo)入新課

      思路1(情境導(dǎo)入)

      一位同學(xué)不小心違反了學(xué)校紀(jì)律,班主任令其寫檢查,他寫完后交給班主任,班主任看后說:“認(rèn)識(shí)不深刻,拿回去重寫,直到認(rèn)識(shí)深刻為止”.這位同學(xué)一想,這不是一個(gè)循環(huán)結(jié)構(gòu)嗎?可惜我還沒學(xué)循環(huán)語句,不然可以寫一個(gè)算法語句輸入計(jì)算機(jī)了.同學(xué)們,今天我們開始學(xué)習(xí)循環(huán)語句.思路2(直接導(dǎo)入)

      前面我們學(xué)習(xí)了程序框圖的畫法,為了讓計(jì)算機(jī)能夠理解算法步驟、程序框圖,上一節(jié)我們學(xué)習(xí)了輸入語句、輸出語句、賦值語句和條件語句,今天我們開始學(xué)習(xí)循環(huán)語句.推進(jìn)新課 新知探究 提出問題

      (1)試用程序框圖表示循環(huán)結(jié)構(gòu).(2)指出循環(huán)語句的格式及功能.(3)指出兩種循環(huán)語句的相同點(diǎn)與不同點(diǎn).(4)揭示程序中的循環(huán)語句與程序框圖中的條件結(jié)構(gòu)存在一一對(duì)應(yīng)關(guān)系.討論結(jié)果:(1)循環(huán)結(jié)構(gòu)

      循環(huán)結(jié)構(gòu)有兩種形式:當(dāng)型循環(huán)結(jié)構(gòu)和直到型循環(huán)結(jié)構(gòu).1°當(dāng)型循環(huán)結(jié)構(gòu),如圖(1)所示

      2°直到型循環(huán)結(jié)構(gòu),如圖(2)所示,(1)當(dāng)型循環(huán)結(jié)構(gòu)

      (2)直到型循環(huán)結(jié)構(gòu)

      (2)循環(huán)語句

      1°當(dāng)型循環(huán)語句

      當(dāng)型(WHILE型)語句的一般格式為:

      WHILE 條件

      循環(huán)體

      WEND

      功能:計(jì)算機(jī)執(zhí)行此程序時(shí),遇到WHILE語句,先判斷條件是否成立,如果成立,則執(zhí)行WHILE和WEND之間的循環(huán)體;然后返回到WHILE語句再判斷上述條件是否成立,如果成立,再執(zhí)行循環(huán)體,這個(gè)過程反復(fù)執(zhí)行,直到一次返回到WHILE語句判斷上述條件不成立為止,這時(shí)不再執(zhí)行循環(huán)體,而是跳到WEND語句后,執(zhí)行WEND后面的語句.因此當(dāng)型循環(huán)又稱“前測(cè)試型”循環(huán),也就是我們經(jīng)常講的“先測(cè)試后執(zhí)行”“先判斷后循環(huán)”.2°直到型循環(huán)語句

      直到型(UNTIL型)語句的一般格式為:

      DO

      循環(huán)體

      LOOP UNTIL 條件

      功能:計(jì)算機(jī)執(zhí)行UNTIL語句時(shí),先執(zhí)行DO和LOOP UNTIL之間的循環(huán)體,然后判斷“LOOP UNTIL”后面的條件是否成立,如果條件不成立,返回DO語句處重新執(zhí)行循環(huán)體.這個(gè)過程反復(fù)執(zhí)行,直到一次判斷“LOOP UNTIL”后面的條件成立為止,這時(shí)不再返回執(zhí)行循環(huán)體,而是跳出循環(huán)體執(zhí)行“LOOP UNTIL條件”下面的語句.因此直到型循環(huán)又稱“后測(cè)試型”循環(huán),也就是我們經(jīng)常講的“先執(zhí)行后測(cè)試”“先循環(huán)后判斷”.(3)相同點(diǎn):都是反復(fù)執(zhí)行循環(huán)體語句.不同點(diǎn):當(dāng)型循環(huán)語句是先判斷后循環(huán),直到型循環(huán)語句是先循環(huán)后判斷.(4)下面為循環(huán)語句與程序框圖中的條件結(jié)構(gòu)的一一對(duì)應(yīng)關(guān)系.1°直到型循環(huán)結(jié)構(gòu):

      2°當(dāng)型循環(huán)結(jié)構(gòu):

      應(yīng)用示例

      思路1 例1 修改前面編寫過的求函數(shù)y=x3+3x2-24x+30的值的程序,連續(xù)輸入11個(gè)自變量的取值,輸出相應(yīng)的函數(shù)值.算法分析:與前面不同的是,本例要求連續(xù)輸入11個(gè)自變量的取值.并輸出相應(yīng)的函數(shù)值,先寫出解決本例的算法步驟: 第一步,輸入自變量x的值.第二步,計(jì)算y=x3+3x2-24x+30.第三步,輸出y.第四步,記錄輸入次數(shù).第五步,判斷輸入的次數(shù)是否大于11.若是,則結(jié)束算法;否則,返回第一步.顯然,可以用計(jì)數(shù)變量n(1≤n≤11)記錄次數(shù),通過循環(huán)結(jié)構(gòu)來實(shí)現(xiàn)算法.程序框圖如下圖:

      程序: n=1 DO

      INPUT x

      y=x^3+3*x^2-24*x+30

      PRINT y

      n=n+1 LOOP UNTIL n>11 END 例2 教材中的用“二分法”求方程x2-2=0(x>0)的近似解的程序框圖(見教材圖1.120)包含了順序結(jié)構(gòu)、條件結(jié)構(gòu)和循環(huán)結(jié)構(gòu).下面,我們把這個(gè)程序框圖轉(zhuǎn)化為相應(yīng)的程序.解:程序?yàn)椋?INPUT “a,b,d=”;a,b,d DO

      m=(a+b)/2

      g=a^2-2

      f=m^2-2

      IF g*f<0 THEN

      b=m

      ELSE

      a=m

      END IF LOOP UNTIL ABS(a-b)<d OR f=0 PRINT m END 點(diǎn)評(píng):ABS()是一個(gè)函數(shù),用來求某個(gè)數(shù)的絕對(duì)值,即ABS(x)=|x|.例3 設(shè)計(jì)一個(gè)計(jì)算1×3×5×7×?×99的算法,編寫算法程序.解:算法如下: 第一步,s=1.第二步,i=3.第三步,s=s×i.第四步,i=i+2.第五步,如果i≤99,那么轉(zhuǎn)到第三步.第六步,輸出s.程序如下:(“WHILE型”循環(huán)語句)s=1 i=3 WHILE i<=99

      s=s*i

      i=i+2 WEND PRINT s END 點(diǎn)評(píng):前面我們已經(jīng)學(xué)過“求和”問題,這是一個(gè)“求積”問題,這兩個(gè)問題都是典型的算法問題,注意它們的聯(lián)系與區(qū)別.例4 編寫一個(gè)程序,求1!+2!+?+10!的值(其中n!=1×2×3×?×n).分析:這個(gè)問題可以用“WHILE+ WHILE”循環(huán)嵌套語句格式來實(shí)現(xiàn).程序結(jié)構(gòu)要做到如下步驟: ①處理“n!”的值;(注:處理n!的值的變量是一個(gè)內(nèi)循環(huán)變量)②累加“n!”的值.(注:累加n!的值的變量是一個(gè)外循環(huán)變量)

      顯然,通過10次循環(huán)可分別求出1!、2!、?、10!的值,并同時(shí)累加起來, 可求得S的值.而求T=n!,又可以用一個(gè)循環(huán)(內(nèi)循環(huán))來實(shí)現(xiàn).解:程序?yàn)椋?s=0 i=1 WHILE i<=10

      j=1

      t=1

      WHILE j<=i

      t=t*j

      j=j+1 WEND

      s=s+t

      i=i+1 WEND PRINT s END 思考:上面程序中哪個(gè)變量是內(nèi)循環(huán)變量,哪個(gè)變量是外循環(huán)變量? 解答:內(nèi)循環(huán)變量:j,t.外循環(huán)變量:s,i.上面的程序是一個(gè)的“WHILE+WHILE”型循環(huán)嵌套語句格式.這是一個(gè)比較好想的方法,但實(shí)際上對(duì)于求n!,我們也可以根據(jù)求出的(n-1)!乘上n即可得到,而無需重新從1再累乘到n.程序可改為: s=0 i=1 j=1 WHILE i<=10

      j=j*i

      s=s+j

      i=i+1 WEND PRINT s END

      顯然第二個(gè)程序的效率要比第一個(gè)高得多.第一程序要進(jìn)行1+2+?+10=55次循環(huán),而第二程序進(jìn)行10次循環(huán).如題目中求的是1!+2?。?+1 000!,則兩個(gè)程序的效率區(qū)別會(huì)更明顯.點(diǎn)評(píng):解決具體的構(gòu)造循環(huán)語句的算法問題,要盡可能地少引入循環(huán)變量,否則較多的變量會(huì)使得設(shè)計(jì)程序比較麻煩,并且較多的變量會(huì)使得計(jì)算機(jī)占用大量的系統(tǒng)資源,致使系統(tǒng)緩慢.另外,也盡可能使得循環(huán)嵌套的層數(shù)少,否則也浪費(fèi)計(jì)算機(jī)的系統(tǒng)資源.變式訓(xùn)練

      某種蛋白質(zhì)是由四種氨基酸組合而成.這四種氨基酸的相對(duì)分子質(zhì)量分別是57,71,97,101.實(shí)驗(yàn)測(cè)定蛋白質(zhì)的相對(duì)分子質(zhì)量為800.問這種蛋白質(zhì)的組成有幾種可能?

      分析:該問題即求如下不定方程的整數(shù)解:設(shè)四種氨基酸在蛋白質(zhì)的組成中分別各有x,y,z,w個(gè).則由題意可得57x+71y+97z+101w=800,(x,y,z,w是非負(fù)整數(shù))

      這里0≤x≤14,0≤y≤11,0≤z≤8,0≤w≤7,利用窮取法,考慮一切可能出現(xiàn)的情況.運(yùn)用多層循環(huán)嵌套處理即可.解:編寫程序如下: w=0 WHILE w<=7

      z=0 WHILE z<=8

      y=0 WHILE y<=11

      x=0 WHILE x<=14

      IF 57*x+71*y+97*z+101*w=800 THEN

      PRINT x,y,z,w

      END IF

      x=x+1 WEND

      y=y+1 WEND

      z=z+1 WEND

      w=w+1 WEND END 知能訓(xùn)練 設(shè)計(jì)算法求1111的值.要求畫出程序框圖,寫出用基本語句?????1?22?33?499?100編寫的程序.解:這是一個(gè)累加求和問題,共99項(xiàng)相加,可設(shè)計(jì)一個(gè)計(jì)數(shù)變量,一個(gè)累加變量,用循環(huán)結(jié)構(gòu)實(shí)現(xiàn)這一算法.程序框圖如下圖所示:

      程序如下: s=0 i=1 Do s=s+1/(i*(i+1))i=i+1 LOOP UNTIL i>99 PRINT s END 拓展提升

      青年歌手電視大賽共有10名選手參加,并請(qǐng)了12名評(píng)委,在計(jì)算每位選手的平均分?jǐn)?shù)時(shí),為了避免個(gè)別評(píng)委所給的極端分?jǐn)?shù)的影響,必須去掉一個(gè)最高分和一個(gè)最低分后再求平均分.試設(shè)計(jì)一個(gè)算法解決該問題,要求畫出程序框圖,寫出程序(假定分?jǐn)?shù)采用10分制,即每位選手的分?jǐn)?shù)最高分為10分,最低分為0分).解:由于共有12位評(píng)委,所以每位選手會(huì)有12個(gè)分?jǐn)?shù),我們可以用循環(huán)語句來完成這12個(gè)分?jǐn)?shù)的輸入,同時(shí)設(shè)計(jì)累加變量求出這12個(gè)分?jǐn)?shù)的和,本問題的關(guān)鍵在于從這12個(gè)輸入分?jǐn)?shù)中找出最大數(shù)與最小數(shù),以便從總分中減去這兩個(gè)數(shù).由于每位選手的分?jǐn)?shù)都介于0分和10分之間,我們可以先假設(shè)其中的最大數(shù)為0,最小數(shù)為10,然后每次輸入一個(gè)評(píng)委的分?jǐn)?shù),就進(jìn)行一次比較,若輸入的數(shù)大于0,就將之代替最大數(shù),若輸入的數(shù)小于10,就用它代替最小數(shù),依次下去,就能找出這12個(gè)數(shù)中的最大數(shù)與最小數(shù),循環(huán)結(jié)束后,從總和中減去最大數(shù)與最小數(shù),再除以10,就得到該選手最后的平均分.程序框圖如右圖:

      程序如下:s=0 i=1 max=0 min=10 DO INPUT x s=s+x IF max<=x THEN max=x END IF IF min>=x THEN min=x END IF i=i+1 LOOP UNTIL i>12 s1=s-max-min a=s1/10 PRINT a

      END 課堂小結(jié)

      (1)學(xué)會(huì)兩種循環(huán)語句的應(yīng)用.(2)熟練應(yīng)用兩種循環(huán)語句編寫計(jì)算機(jī)程序,鞏固算法應(yīng)用.作業(yè)

      習(xí)題1.2A組3.設(shè)計(jì)感想

      本節(jié)的導(dǎo)入符合學(xué)生心理要求,能夠激發(fā)學(xué)生的學(xué)習(xí)興趣.算法像一個(gè)故事,循環(huán)語句就是故事的高潮,它以前面的內(nèi)容為基礎(chǔ),是前面內(nèi)容的總結(jié)和發(fā)展.本節(jié)選用了大量的精彩例題為故事高潮的到來作好了鋪墊,精彩的點(diǎn)評(píng)把本節(jié)推向了高潮,所以本節(jié)教案值得期待.

      第二篇:新課標(biāo)人教B高中數(shù)學(xué)必修3教案1.2.2條件語句

      海量考試資源下載:快樂閱讀網(wǎng) 004km.cn

      普通高中課程標(biāo)準(zhǔn)實(shí)驗(yàn)教科書—數(shù)學(xué)第三冊(cè)[人教版]

      1.2.2條件語句

      教學(xué)目標(biāo):了解條件語句,進(jìn)一步體會(huì)算法的條件分支結(jié)構(gòu) 教學(xué)重點(diǎn):了解條件語句,進(jìn)一步體會(huì)算法的條件分支結(jié)構(gòu) 教學(xué)過程: 條件語句:

      其一般形式為: IF(邏輯表達(dá)式)語句1;ELSE 語句2;上述結(jié)構(gòu)表示: 如果邏輯表達(dá)式的值為非0(TURE)即真, 則執(zhí)行語句1, 執(zhí)行完語句1從語句2后開始繼續(xù)向下執(zhí)行;如果表達(dá)式的值為0(FALSE)即假, 則跳過語句1而執(zhí)行語句2。注意:

      1.條件執(zhí)行語句中“ELSE 語句2;”部分是選擇項(xiàng), 可以缺省, 此時(shí)條件語句變成:

      IF(邏輯表達(dá)式)

      語句1;

      表示若邏輯表達(dá)式的值為非0則執(zhí)行語句1 , 否則跳過語句1繼續(xù)執(zhí)行。

      2.如果語句1或語句2有多于一條語句要執(zhí)行時(shí), 必須使用“{”和“}” 把這些語句包括在其中,此時(shí)條件語句形式為:

      IF(邏輯表達(dá)式)

      { 語句體1;} ELSE { 語句體2;}

      這里語句體指多個(gè)語句,每個(gè)語句都必須以“;”結(jié)尾。

      3.條件語句可以嵌套, 這種情況經(jīng)常碰到, 但條件嵌套語句容易出錯(cuò), 其原因主要是不知道 哪個(gè)IF對(duì)應(yīng)哪個(gè)ELSE。

      例如:

      IF(x>20 OR x<-10)IF(y<=100 AND y>x)A=“Good”;

      海量考試資源下載:快樂閱讀網(wǎng) 004km.cn 海量考試資源下載:快樂閱讀網(wǎng) 004km.cn ELSE B=“Bad”;

      對(duì)于上述情況, 規(guī)定: ELSE語句與最近的一個(gè)IF語句匹配, 上例

      中的ELSE與IF(y<=100 AND y>x)相匹配。為了使ELSE與IF(x>20 OR x<-10)相匹配, 必須用花括號(hào)。如下所示: IF(x>20 OR x<-10){ IF(y<=100 AND y>x)

      A=“Good”;}

      ELSE

      B=“Bad”;4.可用階梯式IF-ELSE-IF結(jié)構(gòu)。

      階梯式結(jié)構(gòu)的一般形式為:

      IF(邏輯表達(dá)式1)語句1;

      ELSE IF(邏輯表達(dá)式2)語句2;

      ELSE IF(邏輯表達(dá)式3)語句3;

      課堂練習(xí):第27頁,練習(xí)A,練習(xí)B 小結(jié):本節(jié)介紹條件語句及其簡(jiǎn)單應(yīng)用

      課后作業(yè):第31頁,習(xí)題1-2A第4題(機(jī)上作業(yè))

      海量考試資源下載:快樂閱讀網(wǎng) 004km.cn

      第三篇:高中數(shù)學(xué) 循環(huán)語句1精品教案 新人教A版必修3

      總第 課時(shí)《循環(huán)語句1》教案

      姓名 2012年 月 日 星期

      【教學(xué)目標(biāo)】

      1、知識(shí)與技能:

      正確理解循環(huán)語句的概念,并掌握其結(jié)構(gòu)的區(qū)別與聯(lián)系。2.過程與方法

      經(jīng)歷對(duì)現(xiàn)實(shí)生活情境的探究,認(rèn)識(shí)到應(yīng)用計(jì)算機(jī)解決數(shù)學(xué)問題方便簡(jiǎn)捷,促進(jìn)發(fā)展學(xué)生邏輯思維能力 3.情感態(tài)度與價(jià)值觀

      了解條件語句在程序中起判斷轉(zhuǎn)折作用,在解決實(shí)際問題中起決定作用。深刻體會(huì)到循環(huán)語句在解決大量重復(fù)問題中起重要作用,減少大量繁瑣的計(jì)算?!局攸c(diǎn)與難點(diǎn)】

      重點(diǎn):循環(huán)語句的步驟、結(jié)構(gòu)及功能。難點(diǎn):會(huì)編寫程序中的循環(huán)語句?!緦W(xué)法與教學(xué)用具】

      計(jì)算機(jī)、圖形計(jì)算器 【課時(shí)】一課時(shí) 【教學(xué)過程】

      1、導(dǎo)入

      試求自然數(shù)1+2+3+?+99+100的和。

      顯然大家都能準(zhǔn)確地口算出它的答案:5050。而能不能將這項(xiàng)計(jì)算工作交給計(jì)算機(jī)來完成呢?而要編程,還需要進(jìn)一步學(xué)習(xí)基本算法語句中的另外兩種:條件語句和循環(huán)語句(板出課題)2.探究新知

      循環(huán)語句格式是算法中的循環(huán)結(jié)構(gòu)是由循環(huán)語句來實(shí)現(xiàn)的。

      (1)WHILE語句的一般:

      其中循環(huán)體是由計(jì)算機(jī)反復(fù)執(zhí)行的一組語句構(gòu)成的。WHLIE后面的“條件”是用于控制計(jì)算機(jī)執(zhí)行循環(huán)體或跳出循環(huán)體的。

      當(dāng)計(jì)算機(jī)遇到WHILE語句時(shí),先判斷條件的真假,如果條件符合,就執(zhí)

      專心

      愛心

      用心 行WHILE與WEND之間的循環(huán)體;然后再檢查上述條件,如果條件仍符合,再次執(zhí)行循環(huán)體,這個(gè)過程反復(fù)進(jìn)行,直到某一次條件不符合為止。這時(shí),計(jì)算機(jī)將不執(zhí)行循環(huán)體,直接跳到WEND語句后,接著執(zhí)行WEND之后的語句。因此,當(dāng)型循環(huán)有時(shí)也稱為“前測(cè)試型”循環(huán)。其對(duì)應(yīng)的程序結(jié)構(gòu)框圖為:(如上右圖)

      (2)UNTIL語句的一般格式是:

      其對(duì)應(yīng)的程序結(jié)構(gòu)框圖為:(如上右圖)〖思考〗:直到型循環(huán)又稱為“后測(cè)試型”循環(huán),參照其直到型循環(huán)結(jié)構(gòu)對(duì)應(yīng)的程序框圖,說說計(jì)算機(jī)是按怎樣的順序執(zhí)行UNTIL語句的?

      從UNTIL型循環(huán)結(jié)構(gòu)分析,計(jì)算機(jī)執(zhí)行該語句時(shí),先執(zhí)行一次循環(huán)體,然后進(jìn)行條件的判斷,如果條件不滿足,繼續(xù)返回執(zhí)行循環(huán)體,然后再進(jìn)行條件的判斷,這個(gè)過程反復(fù)進(jìn)行,直到某一次條件滿足時(shí),不再執(zhí)行循環(huán)體,跳到LOOP UNTIL語句后執(zhí)行其他語句,是先執(zhí)行循環(huán)體后進(jìn)行條件判斷的循環(huán)語句?!继釂枴剑和ㄟ^對(duì)照,大家覺得WHILE型語句與UNTIL型語句之間有什么區(qū)別呢?(讓學(xué)生表達(dá)自己的感受)

      區(qū)別:在WHILE語句中,是當(dāng)條件滿足時(shí)執(zhí)行循環(huán)體,而在UNTIL語句中,是當(dāng)條件不滿足時(shí)執(zhí)行循環(huán)體。

      【布置作業(yè)】

      P23習(xí)題1.2 A組 3 P24習(xí)題1.2 B組 2.【教學(xué)反思】

      專心

      愛心

      用心 2

      第四篇:高中數(shù)學(xué)必修2新課標(biāo)人教A版教案

      目錄

      第一章:空間幾何體...............................................................................................................................................1 1.2.1 空間幾何體的三視圖(1課時(shí))........................................................................................................3 1.2.2 空間幾何體的直觀圖(1課時(shí))......................................................................錯(cuò)誤!未定義書簽。1.3.1柱體、錐體、臺(tái)體的表面積與體積.....................................................................錯(cuò)誤!未定義書簽?!?.3.2 球的體積和表面積...........................................................................................錯(cuò)誤!未定義書簽。

      第二章 直線與平面的位置關(guān)系..............................錯(cuò)誤!未定義書簽。

      §2.1.1平面.....................................................................................................................錯(cuò)誤!未定義書簽?!?.1.2 空間中直線與直線之間的位置關(guān)系.................................................................錯(cuò)誤!未定義書簽?!?.1.3 — 2.1.4 空間中直線與平面、平面與平面之間的位置關(guān)系..........................錯(cuò)誤!未定義書簽。§2.2.1 直線與平面平行的判定.....................................................................................錯(cuò)誤!未定義書簽?!?.2.2平面與平面平行的判定.....................................................................................錯(cuò)誤!未定義書簽?!?.2.3 — 2.2.4直線與平面、平面與平面平行的性質(zhì).................................................錯(cuò)誤!未定義書簽。§2.3.1直線與平面垂直的判定......................................................................................錯(cuò)誤!未定義書簽。§2.3.2平面與平面垂直的判定......................................................................................錯(cuò)誤!未定義書簽?!?/p>

      2、3.3直線與平面垂直的性質(zhì) §

      2、3.4平面與平面垂直的性質(zhì)............................錯(cuò)誤!未定義書簽。本章小結(jié).........................................................................................................................錯(cuò)誤!未定義書簽。

      第三章

      直線與方程................................................錯(cuò)誤!未定義書簽。

      3.1.1直線的傾斜角和斜率............................................................................................錯(cuò)誤!未定義書簽。3.1.2兩條直線的平行與垂直()......................................................................................錯(cuò)誤!未定義書簽。3.2.1 直線的點(diǎn)斜式方程.............................................................................................錯(cuò)誤!未定義書簽。3.2.2 直線的兩點(diǎn)式方程.............................................................................................錯(cuò)誤!未定義書簽。3.2.3 直線的一般式方程.............................................................................................錯(cuò)誤!未定義書簽。3.3-1兩直線的交點(diǎn)坐標(biāo)................................................................................................錯(cuò)誤!未定義書簽。3.3.2直線與直線之間的位置關(guān)系-兩點(diǎn)間距離...........................................................錯(cuò)誤!未定義書簽。3.3.3兩條直線的位置關(guān)系 ―點(diǎn)到直線的距離公式.............................................錯(cuò)誤!未定義書簽。

      第四章 圓與方程......................................................錯(cuò)誤!未定義書簽。

      4.1.1 圓的標(biāo)準(zhǔn)方程.......................................................................................................錯(cuò)誤!未定義書簽。4.1.2圓的一般方程........................................................................................................錯(cuò)誤!未定義書簽。4.2.1 直線與圓的位置關(guān)系.........................................................................................錯(cuò)誤!未定義書簽。4.2.2 圓與圓的位置關(guān)系.............................................................................................錯(cuò)誤!未定義書簽。4.2.3 直線與圓的方程的應(yīng)用.....................................................................................錯(cuò)誤!未定義書簽。

      I

      http://hi.baidu.com/水煮木魚石

      第一章:空間幾何體

      1.1.1柱、錐、臺(tái)、球的結(jié)構(gòu)特征

      一、教學(xué)目標(biāo) 1.知識(shí)與技能

      (1)通過實(shí)物操作,增強(qiáng)學(xué)生的直觀感知。(2)能根據(jù)幾何結(jié)構(gòu)特征對(duì)空間物體進(jìn)行分類。

      (3)會(huì)用語言概述棱柱、棱錐、圓柱、圓錐、棱臺(tái)、圓臺(tái)、球的結(jié)構(gòu)特征。(4)會(huì)表示有關(guān)于幾何體以及柱、錐、臺(tái)的分類。2.過程與方法

      (1)讓學(xué)生通過直觀感受空間物體,從實(shí)物中概括出柱、錐、臺(tái)、球的幾何結(jié)構(gòu)特征。(2)讓學(xué)生觀察、討論、歸納、概括所學(xué)的知識(shí)。3.情感態(tài)度與價(jià)值觀

      (1)使學(xué)生感受空間幾何體存在于現(xiàn)實(shí)生活周圍,增強(qiáng)學(xué)生學(xué)習(xí)的積極性,同時(shí)提高學(xué)生的觀察能力。(2)培養(yǎng)學(xué)生的空間想象能力和抽象括能力。

      二、教學(xué)重點(diǎn)、難點(diǎn)

      重點(diǎn):讓學(xué)生感受大量空間實(shí)物及模型、概括出柱、錐、臺(tái)、球的結(jié)構(gòu)特征。難點(diǎn):柱、錐、臺(tái)、球的結(jié)構(gòu)特征的概括。

      三、教學(xué)用具

      (1)學(xué)法:觀察、思考、交流、討論、概括。(2)實(shí)物模型、投影儀

      四、教學(xué)思路

      (一)創(chuàng)設(shè)情景,揭示課題

      1.教師提出問題:在我們生活周圍中有不少有特色的建筑物,你能舉出一些例子嗎?這些建筑的幾何結(jié)構(gòu)特征如何?引導(dǎo)學(xué)生回憶,舉例和相互交流。教師對(duì)學(xué)生的活動(dòng)及時(shí)給予評(píng)價(jià)。

      2.所舉的建筑物基本上都是由這些幾何體組合而成的,(展示具有柱、錐、臺(tái)、球結(jié)構(gòu)特征的空間物體),你能通過觀察。根據(jù)某種標(biāo)準(zhǔn)對(duì)這些空間物體進(jìn)行分類嗎?這是我們所要學(xué)習(xí)的內(nèi)容。

      (二)、研探新知

      1.引導(dǎo)學(xué)生觀察物體、思考、交流、討論,對(duì)物體進(jìn)行分類,分辯棱柱、圓柱、棱錐。

      2.觀察棱柱的幾何物件以及投影出棱柱的圖片,它們各自的特點(diǎn)是什么?它們的共同特點(diǎn)是什么? 3.組織學(xué)生分組討論,每小組選出一名同學(xué)發(fā)表本組討論結(jié)果。在此基礎(chǔ)上得出棱柱的主要結(jié)構(gòu)特征。(1)有兩個(gè)面互相平行;(2)其余各面都是平行四邊形;(3)每相鄰兩上四邊形的公共邊互相平行。概括出棱柱的概念。

      4.教師與學(xué)生結(jié)合圖形共同得出棱柱相關(guān)概念以及棱柱的表示。

      5.提出問題:各種這樣的棱柱,主要有什么不同?可不可以根據(jù)不同對(duì)棱柱分類?

      請(qǐng)列舉身邊具有已學(xué)過的幾何結(jié)構(gòu)特征的物體,并說出組成這些物體的幾何結(jié)構(gòu)特征?它們由哪些請(qǐng)你下載完整版 …

      木魚石整理

      QQ:66610032 基本幾何體組成的?

      6.以類似的方法,讓學(xué)生思考、討論、概括出棱錐、棱臺(tái)的結(jié)構(gòu)特征,并得出相關(guān)的概念,分類以及表示。

      7.讓學(xué)生觀察圓柱,并實(shí)物模型演示,如何得到圓柱,從而概括出圓標(biāo)的概念以及相關(guān)的概念及圓柱的表示。

      8.引導(dǎo)學(xué)生以類似的方法思考圓錐、圓臺(tái)、球的結(jié)構(gòu)特征,以及相關(guān)概念和表示,借助實(shí)物模型演示引導(dǎo)學(xué)生思考、討論、概括。

      9.教師指出圓柱和棱柱統(tǒng)稱為柱體,棱臺(tái)與圓臺(tái)統(tǒng)稱為臺(tái)體,圓錐與棱錐統(tǒng)稱為錐體。

      10.現(xiàn)實(shí)世界中,我們看到的物體大多由具有柱、錐、臺(tái)、球等幾何結(jié)構(gòu)特征的物體組合而成。請(qǐng)列舉身邊具有已學(xué)過的幾何結(jié)構(gòu)特征的物體,并說出組成這些物體的幾何結(jié)構(gòu)特征?它們由哪些基本幾何體組成的?

      (三)質(zhì)疑答辯,排難解惑,發(fā)展思維,教師提出問題,讓學(xué)生思考。

      1.有兩個(gè)面互相平行,其余后面都是平行四邊形的幾何體是不是棱柱(舉反例說明,如圖)2.棱柱的何兩個(gè)平面都可以作為棱柱的底面嗎? 3.課本P8,習(xí)題1.1 A組第1題。

      4.圓柱可以由矩形旋轉(zhuǎn)得到,圓錐可以由直角三角形旋轉(zhuǎn)得到,圓臺(tái)可以由什么圖形旋轉(zhuǎn)得到?如何旋轉(zhuǎn)?

      5.棱臺(tái)與棱柱、棱錐有什么關(guān)系?圓臺(tái)與圓柱、圓錐呢?

      四、鞏固深化

      練習(xí):課本P7 練習(xí)1、2(1)(2)

      課本P8習(xí)題1.1 第2、3、4題

      五、歸納整理

      由學(xué)生整理學(xué)習(xí)了哪些內(nèi)容

      六、布置作業(yè)

      課本P8 練習(xí)題1.1 B組第1題 課外練習(xí)課本P8習(xí)題1.1 B組第2題

      ……..…….…….完整版下載地址… …….…….…….http://hi.baidu.com/水煮木魚石

      1.2.1 空間幾何體的三視圖(1課時(shí))

      一、教學(xué)目標(biāo)

      1.知識(shí)與技能

      (1)掌握畫三視圖的基本技能(2)豐富學(xué)生的空間想象力 2.過程與方法

      主要通過學(xué)生自己的親身實(shí)踐,動(dòng)手作圖,體會(huì)三視圖的作用。3.情感態(tài)度與價(jià)值觀(1)提高學(xué)生空間想象力(2)體會(huì)三視圖的作用

      二、教學(xué)重點(diǎn)、難點(diǎn)

      重點(diǎn):畫出簡(jiǎn)單組合體的三視圖 難點(diǎn):識(shí)別三視圖所表示的空間幾何體

      三、學(xué)法與教學(xué)用具

      1.學(xué)法:觀察、動(dòng)手實(shí)踐、討論、類比 2.教學(xué)用具:實(shí)物模型、三角板

      四、教學(xué)思路

      (一)創(chuàng)設(shè)情景,揭開課題

      “橫看成嶺側(cè)看成峰”,這說明從不同的角度看同一物體視覺的效果可能不同,要比較真實(shí)反映出物體,我們可從多角度觀看物體,這堂課我們主要學(xué)習(xí)空間幾何體的三視圖。

      在初中,我們已經(jīng)學(xué)習(xí)了正方體、長(zhǎng)方體、圓柱、圓錐、球的三視圖(正視圖、側(cè)視圖、俯視圖),你能畫出空間幾何體的三視圖嗎?

      (二)實(shí)踐動(dòng)手作圖

      1.講臺(tái)上放球、長(zhǎng)方體實(shí)物,要求學(xué)生畫出它們的三視圖,教師巡視,學(xué)生畫完后可交流結(jié)果并討論;……..…….…….完整版下載地址… …….…….…….http://hi.baidu.com/水煮木魚石

      ……..…….…….完整版下載地址… …….…….…….本資料僅供網(wǎng)友交流學(xué)習(xí)使用,請(qǐng)您在下載后24小時(shí)內(nèi)刪除,不得用于商業(yè)用途,否

      則追究您法律責(zé)任!

      [木魚石整理]

      更多優(yōu)秀高中數(shù)學(xué)教學(xué)資料免費(fèi)共享??

      第五篇:人教新課標(biāo)高中英語必修1Unit2EnglishAroundtheWorld教案

      Unit 2 English Around the World

      Ⅰ單元教學(xué)目標(biāo)

      技能目標(biāo)Goals

      Talk about English and its development, Different kinds of English

      Talk about difficulties in language communication

      Learn to make dialogue using request & commands

      Learn to transfer from direct into indirect speech

      Learn to give opinions and organize ideas by way of brainstorming

      Learn to make a poster showing your ideas clearly Ⅱ目標(biāo)語言 功能句式

      Talk about English and its development Refer to Introduction in the teachers’ book

      Talk about difficulties in language communication

      Different speaker may come from different place, so they may use different words and dialect, such as subway-underground、left-left-hand-side、two blocks two streets.Make dialogues using request or command: Pardon? Could you repeat that, please?

      I beg your pardon? Can you speak more slowly, please? I don’t understand.Sorry.I can’t follow you.Could you say that again, please? How do you spell it, please?

      詞匯

      1.四會(huì)詞匯

      include role international native elevator flat apartment rubber petrol gas modern culture AD actually present(adj.)rule(v.)vocabulary usage identity government Singapore Malaysia rapidly phrase candy lorry command request retell polite boss standard mid-western southern Spanish eastern northern recognize accent lightning direction ma’am subway block 2.認(rèn)讀詞匯

      Shakespeare Noah Webster Lori dialect Houston Texas Buford Lester catfish 3.固定詞組

      play a role(in)because of come up such as play a part(in)

      語法

      Command & request

      Open the door.Please open the door.Would you please open the door? Indirect Speech

      He told(asked)me to open the door.Ⅲ.教材分析和教材重組: 1.教材分析

      本單元的中心話題是 “English language and its development, different kinds of English”.通過對(duì)世界英語這一話題的探討,加強(qiáng)學(xué)生對(duì)英語語言的了解,對(duì)當(dāng)代語言特別是英語發(fā)展趨勢(shì)的了解.世界在發(fā)展,時(shí)代在前進(jìn),語言作為交流的工具,也隨著時(shí)代的發(fā)展而變化.由于英語在世界上的廣泛使用,它不斷地吸收、交融、容納、創(chuàng)新,這就形成了各種各樣帶有國(guó)家、民族、地區(qū)特色的英語.沒有人們認(rèn)為的那種唯一的標(biāo)準(zhǔn)英語。盡管如此,我們還是要通過本課文的學(xué)習(xí)讓同學(xué)們感受、了解美國(guó)英語、澳大利亞英語、印度英語、新加坡英語等都有自己的規(guī)律和慣用法,和不同的發(fā)音規(guī)律。

      1.1 Warming Up簡(jiǎn)要介紹了世界英語的分支以及英語語言在不同國(guó)家產(chǎn)生的差異,使學(xué)生感受英語語言的多文化、多層次、多元性,對(duì)英國(guó)英語和美國(guó)英語的不同有一個(gè)粗淺的了解。

      1.2 Pre-reading通過兩個(gè)問題引發(fā)學(xué)生對(duì)課文主題的思考,以便參與課堂活動(dòng)。

      1.3 Reading簡(jiǎn)要地說明英語語言的起源、發(fā)展變化、形成原因,以及它的發(fā)展趨勢(shì)。

      1.4 Comprehending主要是檢測(cè)學(xué)生對(duì)課文基本內(nèi)容的理解程度。

      1.5 Learning About the Language主要通過各種練習(xí)幫助學(xué)生重溫本單元前幾個(gè)部分所學(xué)的新單詞和短語,同時(shí)也通過新的例子展現(xiàn)了美國(guó)英語、英國(guó)英語的差異,并著重介紹了本單元的語法項(xiàng)目(Request & Command and Indirect Speech)。

      1.6 Using Language其中的reading and talking主要介紹了當(dāng)今世界各地各國(guó)說英語有自己的特色,即便是美國(guó)東西部、南北部,說話均有所不同。為幫助培養(yǎng)跨文化意識(shí),可以讓學(xué)生學(xué)完課文后討論中國(guó)的方言,使他們感受到本國(guó)的文化差異。

      2.教材重組

      2.1 導(dǎo)入 把Warming Up 作為一堂課。

      2.2 精讀 把Pre-reading、Reading 和 Comprehending整合在一起作為一堂課精讀課。

      2.3 語言學(xué)習(xí)把Learning About Language和Workbook中的Using Words, Using Structures 結(jié)合在一起。

      2.4 寫作

      2.5聽和說 把課文中的聽和說整合成一堂課。

      2.6 練習(xí)課 workbook exercises & other Exx.3.課型設(shè)計(jì)與課時(shí)分配

      1st period Warming Up

      2nd period Reading &Language Study

      3rd period Learning About Language r& grammar 4th period Writing

      5th period Listening & Speaking 6th period Exercises

      Unit 2 English around the world Period One Warming up

      一、教學(xué)目標(biāo)(teaching aims)student’s book;warming up

      1、能力目標(biāo)(ability aim)

      a.Enable students to talk about the world Englishes

      b.Enable students to talk about the differences between Am.English and Br.English

      2、語言目標(biāo)(language aim)

      more than;include;play an important role;because of;international;native;elevator;flat;apartment;rubber;petrol;gas;

      二、教學(xué)重難點(diǎn)(Teaching important points)a.Students learn about the world Englishes and the differences between Am.English and Br.English.b.Students can understand the jokes caused by the misunderstanding of different Englishes.三、教學(xué)方法(Teaching method)

      a.Individual, pair or group work to finish each task.b.Listening c.Discussion

      四、教具準(zhǔn)備(Teaching aids)

      a computer;a tape-recorder;a projector

      五、教學(xué)步驟(Teaching procedure)Step I.Leading-in

      Fun time: warm the students up by asking them to greet each other with their dialects.At the same time, lead the students to think about the topic of this unit--“l(fā)anguage”.Step II.Warming up.1)A quiz about the national flag of countries speaking English as their first or second language.Lead the students to the topic “English Around the world”.2)Ask the students to think about the question about the “world Englishes”.Step III.Talking about “world Englishes”, especially the differences between “American English” and “British English”

      1)Listen to a dialogue between an American and an Englishman.And try to find out the cause of the misunderstanding between them.2)Talk about the differences between American English and British English.(mainly about vocabulary and spelling)Step IV.Speaking Task.Students make up a dialogue with a misunderstanding caused by the differences between “American English” and “British English” like the dialogue they listened to.Unit 2 English Around the World Period Two Reading

      教學(xué)目標(biāo)(Teaching aims)

      Get the students to know English language and its development and different kinds of English through this passage.教學(xué)內(nèi)容(Teaching contents)

      Get the knowledge of English language and its development and different kinds of English.能力目標(biāo)(Ability aim)

      Get some knowledge of different kinds of English 語言目標(biāo)(Language aim)

      Grasp some words and expressions such as, play a role in /because of/ come up/ play a part in and learn the grammar--the indirect speech of the imperative clause 教學(xué)重難點(diǎn)(Teaching important points)The indirect speech of the imperative clause 教學(xué)方法(Teaching methods)task-based approach 教具準(zhǔn)備(Teaching aids)multi-media computer

      教學(xué)步驟(Teaching procedure)Step 1 Warming up.Warm the students up by ask them to tell the differences between American English and British English.Step 2

      Pre-reading.Ask the students to discuss some questions about “English” in pairs.1.How many people speak English in the world today? 2.Why do so many people speak English? 3.What has helped to spread English around the world? 4.Do you think it important for Chinese to learn English? Why? Step 3

      Reading.1)The first-reading.Ask the students to scan the text and choose the correct answer in the book.2)The second-reading.Ask the students to read the text paragraph by paragraph, and get some detail information.a.For the first and second paragraph, students answer some questions

      b.For the third and fourth paragraph, students find out the information to fill in the table of the development of English.c.For the last paragraph, students find out the reason why India speaks English.Step 4

      Discussions:

      1.Do you think it matters what kind of English you learn? Why? 2, Why do you think people all over the world want to learn English?

      3, Do you think Chinese will become the most popular language in the world instead of English in the future?

      Step 5

      Extension

      Give the students some information of origin of British English and American English.The formation of British English From 17th century—19th century

      The UK colonized Ireland and joined with Scotland long ago

      Colonized;North America, the Caribbean India, including Pakistan, Bangladesh, Australia, New Zealand, Palestine, parts of sub-Sahara Africa, Hong Kong, Singapore and the Pacific Islands The formation of American English

      American colonial rulers also brought their English to:

      Hawaii, Puerto Rico, the Philippines and other Pacific island in the late 19th century Introduce the situation of English speaking in China.Tell them some proper items.Native speaker: A person who speaks English since birth but who may not speak a standard form of it.L1 speaker: A native speaker of English who uses it as his or her mother tongue or an immigrant to an English-speaking country who always prefer to use it ESL: English as a Second Language

      L2 speaker: A second language speaker of English EFL: English as a Foreign Language Step 6

      Homework

      1.Finish the exercise on page 11.2.Read passage on page 51 The Oxford English Dictionary and make notes about Murray’s life.Unit 2 English around the world

      Period Three Learning about Language

      一、教學(xué)目標(biāo)(teaching aims)student’s book;Discovering useful structures

      1、能力目標(biāo)(ability aim)

      a.Enable students to tell the differences between a request and a command.b.Enable students to learn about the Indirect Speech(requests & commands)c.Enable students to use the Indirect Speech(requests & commands)

      2、語言目標(biāo)(language aim)

      command;request;retell;polite;boss Indirect Speech(requests and commands)

      二、教學(xué)重難點(diǎn)(Teaching important points)a.Students learn about the differences between a request and a command.b.Students learn about the Indirect Speech(requests and commands)c.Students can use the indirect speech.三、教學(xué)方法(Teaching method)

      a.Individual, pair or group work to finish each task.b.Discovering the structure through examples c.Practice

      四、教具準(zhǔn)備(Teaching aids)a computer;a projector

      五、教學(xué)步驟(Teaching procedure Step 1.Warming-up(Revision)

      Warm the students up by asking them to go over the Direct Speech and Indirect Speech..Do some exercises : change a statement or a question into Indirect Speech.Step 2.Talk about Request and Command.1)Talk about the polite and Impolite tune.2)Change the commands into Requests.3)Learn to give requests or commands according to the situations.Step 3.Talk about how to change a request and a command into Indirect Speech.ask(ed)sb(not)to do sth tell/told sb(not)to do sth

      Step 4.Practise changing a request or a command into Indirect Speech.Step 5.Using the structure.A game: choose two students act as two robots.One listens to the requests, the other listens to the commands.Other students give either requests or commands, and the robots do what the students asked them to do.Unit 2;English Around the World(Period Four)writing

      教學(xué)目標(biāo)(Teaching aims)

      a.Let students get to know how to write a statement by using brainstorming

      b.Try to use connecting words or sentences to make it as an essay or passage not just several sentences.教學(xué)內(nèi)容(Teaching contents)Write a statement

      能力目標(biāo)(Ability aim)

      Using the brainstorming way to collect sentences and then arrange them properly 語言目標(biāo)(Language aim)I think, I believe,In my opinion…

      We learn English to do…

      教學(xué)重難點(diǎn)(Teaching important points)How to arrange sentence correctly.Try to use connecting words.教學(xué)方法(Teaching methods)Brainstorming way

      教具準(zhǔn)備(Teaching aids)multi-media computer

      教學(xué)步驟(Teaching procedure)Step1 Leading in

      Use the brainstorming way to ask students “Why should we live?” which is a simple question, at the same time there might be various answers to the question, which will stimulate their interest.Step2 Presentation

      Also use the brainstorming way to ask “Why should we learn English?” and “how can learning English help China?” Step3 A poster

      Write a poster to collect all their ideas.try to use completely sentences, such as : I like to study English and use it for business in the future.I want to study English well so that I can read English books.Say, come to the blackboard and write down your ideas, trying to use complete sentences, such as: If I learn English well, I can bring in the advanced foreign technology to China.So China will become stronger.I decide to learn English well, in this case I can read many English novels, so I can translate them into Chinese, then more Chinese can know more things about the world.Step4 Write an essay

      The title is “Do we need to learn English?”

      Step5 Display the structure on how to write the essay.1.State your points of view.2.Show the supporting reasons.3.Get a conclusion Step6 Show them the connecting words which can help them to join the sentences and paragraphs.Illustration: I think , I believe, In my opinion, As far as I am concerned… Addition: firstly, secondly, then, besides, at last… Contrast: however, but , on the other hand… Summary: in short, in a word, therefore, so…

      Step7 Give them a simple example which is not complete Do we need to learn English?

      I strongly think we not only need learn English but also learn it well…Why should we learn it…How can learning English help China in the future?…So… Step8 Homework My Experience of Learning English Para1.My problems in learning English.Para 2.How I can improve my English.Para.3.What I like about learning English.Para Para 4.How I hope to make use of my English.Unit 2: English Around the World Period Five Listening & speaking

      一、學(xué)目標(biāo)(Teaching aims)

      教材(Teaching materials)listening materials on p12 and p14 on the textbook, another one attached

      1、能力目標(biāo)(ability aim)enable Ss to catch the listening materials and understand them and distinguish British and American English, try using them in dialogues.2、語言目標(biāo)(Language aim)distinguish some words used in British and American English、some dialect and accent

      二、教學(xué)重難點(diǎn)(Teaching important points)understand words used in British and American which have the same meanings and some dialect accent

      三、教學(xué)方法(Teaching method)listening and talking

      四、教學(xué)準(zhǔn)備(Teaching aids)tape recorder and get students’ answer sheet printed out

      五、教學(xué)步驟(Teaching procedure)Step 1 Listening

      Listening 2(text book p14)

      Listen to the tape, getting to know American dialect and accent.Step 2 Speaking

      After listening to different dialects and accents, see if Ss know how to pronounce the following words:

      ask after either neither kilometer box……and more

      Unit Two :English Around the World The Sixth period Exercises

      一.教學(xué)目標(biāo):(Teaching aims)Finish the exercises on the workbook 1.能力目標(biāo):(ability aim)

      a)Enable the students to command “commands and requests” b)Through cooperative work find out correct answers themselves 2.語言目標(biāo):(language aim)Full understanding of the readings

      二.教學(xué)重難點(diǎn)(Teaching important points)Understanding the main ideas of the passages 三.教學(xué)方法(Teaching method)a.Fast and careful reading

      b.Individual, pair or group work to finish each task c.Discussion

      四.教具準(zhǔn)備(Teaching aids)a computer

      五.教學(xué)步驟(teaching procedure)Step 1.Warming up

      Step 2: speaking task(Review commands and requests)

      Offer them situations and try to make dialogues with commands and requests Step 3 :Do the “Reading” on P13 and answer questions on it briefly.Step 4: Finish the “Reading Task” at p.51 and complete the form after it.Step 5: Group work:

      Ask them to sum up what codes and short forms of words they often use when they often chat on the net with others.Step 6: check up their researching result.Step 7: homework.

      下載山東省高中數(shù)學(xué)(新課標(biāo)人教A版)必修三《1.2.3 循環(huán)語句》教案word格式文檔
      下載山東省高中數(shù)學(xué)(新課標(biāo)人教A版)必修三《1.2.3 循環(huán)語句》教案.doc
      將本文檔下載到自己電腦,方便修改和收藏,請(qǐng)勿使用迅雷等下載。
      點(diǎn)此處下載文檔

      文檔為doc格式


      聲明:本文內(nèi)容由互聯(lián)網(wǎng)用戶自發(fā)貢獻(xiàn)自行上傳,本網(wǎng)站不擁有所有權(quán),未作人工編輯處理,也不承擔(dān)相關(guān)法律責(zé)任。如果您發(fā)現(xiàn)有涉嫌版權(quán)的內(nèi)容,歡迎發(fā)送郵件至:645879355@qq.com 進(jìn)行舉報(bào),并提供相關(guān)證據(jù),工作人員會(huì)在5個(gè)工作日內(nèi)聯(lián)系你,一經(jīng)查實(shí),本站將立刻刪除涉嫌侵權(quán)內(nèi)容。

      相關(guān)范文推薦

        新課標(biāo)人教A版高中數(shù)學(xué)必修1第一章集合測(cè)試題

        集合測(cè)試題 一、選擇題(30分) 1.下列各項(xiàng)中,不可以組成集合的是( ) A.所有的正數(shù) B.等于2的數(shù) C.接近于0的數(shù) D.不等于0的偶數(shù) 2.下列四個(gè)集合中,是空集的是( ) A.{x|x?3?3} B.{(x,y)|y2??x2,x......

        新課標(biāo)人教A版必修2全套教案

        第一章:空間幾何體 1.1.1柱、錐、臺(tái)、球的結(jié)構(gòu)特征 一、教學(xué)目標(biāo) 1.知識(shí)與技能 (1)通過實(shí)物操作,增強(qiáng)學(xué)生的直觀感知。 (2)能根據(jù)幾何結(jié)構(gòu)特征對(duì)空間物體進(jìn)行分類。 (3)會(huì)用語言概述......

        《荷塘月色》教案(人教新課標(biāo)版必修2)

        荷塘月色【背景材料】一、作者簡(jiǎn)介朱自清原名自華,字佩弦,號(hào)秋實(shí)。祖籍浙江省紹興市,1898 年生于江蘇省東??h。1903 年隨家定居揚(yáng)州,故自稱“我是揚(yáng)州人”。1916 年中學(xué)畢業(yè)后,......

        人教新課標(biāo)必修2指導(dǎo)教案:離騷

        高考資源網(wǎng)(ks5u.com) 您身邊的高考專家 6 離 騷 名師導(dǎo)航 內(nèi)容感知 《離騷》是我國(guó)古代一首偉大的抒情長(zhǎng)詩,歷來以其可與日月爭(zhēng)輝的光芒照耀詩壇。全詩373句,是屈原的思想結(jié)晶......

        人教A版高中數(shù)學(xué)必修1教案-2.2對(duì)數(shù)函數(shù)教案

        課題:§2.2.1對(duì)數(shù) 教學(xué)目的:(1)理解對(duì)數(shù)的概念; (2)能夠說明對(duì)數(shù)與指數(shù)的關(guān)系; (3)掌握對(duì)數(shù)式與指數(shù)式的相互轉(zhuǎn)化. 教學(xué)重點(diǎn):對(duì)數(shù)的概念,對(duì)數(shù)式與指數(shù)式的相互轉(zhuǎn)化 教學(xué)難點(diǎn):對(duì)數(shù)概念的理......

        人教B版高中數(shù)學(xué)必修三+1.1.1算法的概念+教案

        1.1.1算法的概念 教學(xué)目標(biāo): 1.知識(shí)與技能目標(biāo) (1)了解算法的含義,體會(huì)算法的思想。 (2)能夠說明解決簡(jiǎn)單問題的算法步驟。 (3)了解正確的算法應(yīng)滿足的要求,即算法的特點(diǎn)。 (4)初步了解......

        人教新課標(biāo)三下第32課《夸父追日》教案

        32*夸父追日教學(xué)目標(biāo): 1.正確、流利、有感情地朗讀課文。 2.能概括故事的主要內(nèi)容,感受夸父的執(zhí)著、奉獻(xiàn)精神。 3.會(huì)復(fù)述這個(gè)故事。課前準(zhǔn)備: 將學(xué)生的座位按學(xué)習(xí)小組排列成“......

        人教新課標(biāo)必修一 Unit1 Friendship[全套教案]

        嘉興英語教學(xué)網(wǎng) 004km.cn 收集整理 Unit 1 Friendship Teaching goals: *語言知識(shí) 1. to talk about friends and friendship, and interpersonal relationship......