Loading...

calculator VIDEO GAME
Quiz by Caiden Green
Customize this quiz to suit your class
Instantly translate to 100+ languages
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
2+3=?

5
67667
6767
5656
2-5=?

3
45
87
23
2+3=?

2-5=?

1+10=?

2+10=?

Give this quiz to my class
In this video we take a look at the 0:02 fetch to code 0:03 execute cycle including its effect on 0:06 the various registers we've previously 0:12 [Music] 0:14 discussed a computer is defined Definition 0:17 as an electronic device that takes an 0:20 input 0:22 processes data 0:25 and delivers output 0:29 in this simple example you can see we're 0:31 taking the input 5 0:35 we're multiplying it by 2 that's our 0:37 process 0:39 and we're outputting 10. 0:44 but this could be way more complex for 0:46 example of a game console 0:48 the input could be the buttons you press 0:50 on a controller 0:53 the processes would then be carried out 0:55 by the console itself 0:59 and the output would be some form of 1:01 update to a monitor 1:02 and sound out for a speaker possibly 1:04 vibration feedback through the 1:06 controller 1:10 to process data a computer follows a set 1:13 of instructions 1:14 known as a computer program 1:18 if we take the lid off a typical desktop 1:20 computer we can identify 1:22 two critical components the memory 1:26 that stores the program and the central 1:29 processing unit or processor 1:31 which is under this large fan and 1:33 carries out the instructions 1:37 a computer carries out its function by 1:40 fetching 1:41 instructions decoding them and then 1:43 executing them 1:44 in a continuous repetitive cycle 1:46 billions of times a second 1:48 let's look at each of these stages in a 1:50 little more detail Fetch 1:53 so let's start with the fetch stage the 1:55 very first thing that happens 1:57 is the program counter is checked as it 2:00 holds the address 2:01 of the next instruction to be executed 2:07 the address stored is then copied into 2:09 the memory address register 2:14 the address is then sent along the 2:16 address bus to main memory 2:18 where it waits to receive a signal from 2:21 the control 2:22 bus so it knows what to do 2:27 as we want to read the data that's 2:29 stored in memory address 2:30 0 0 0 0 the control unit sends 2:34 a read signal along the control bus to 2:36 main memory 2:41 now main memory knows the data needs to 2:44 be read 2:45 the content stored in memory address 000 2:49 can be sent along the data bus to the 2:51 memory data register 2:56 now as we're currently in the process of 2:58 fetching an instruction 3:00 the data received by the memory data 3:03 register gets copied 3:04 into the current instruction register 3:11 the instruction effectively has now been 3:14 fetched from memory 3:16 just before we proceed to the decode 3:18 phase we now 3:19 increment the program counter so that 3:22 the address it contains 3:24 points to the address of the next 3:26 instruction which will need to be 3:30 executed 3:32 the instruction now being held in the 3:33 current instruction register 3:35 is ready to be decoded 3:39 now as we mentioned in the previous 3:41 video the instruction is made up of two 3:43 parts 3:44 we have the op code that's what it is we 3:47 need to do 3:50 and we have the operand what are we 3:53 going to do it to 3:55 now the operand could contain the actual 3:57 data 3:58 or indeed it could contain an address of 4:01 where the data is to be found 4:06 by decoding this instruction we can see 4:08 the operation we need 4:10 is a load operation so we need to load 4:14 the contents of memory location0101 4:18 into the cpus accumulator 4:25 in the exam a simple model will be used 4:27 to describe the 4:29 structure of any given instruction 4:32 you're not going to be expected to 4:34 define how an opcode is made up 4:36 but simply to interpret opcodes in the 4:39 given context of an exam 4:40 question in the example here 4:44 you can see there's a total of 16 4:46 different opcodes available 4:48 and this is because we're using four 4:50 bits for our representation 4:56 so now we've fetched the instruction and 4:59 we've decoded it so we know what we need 5:00 to do 5:01 we're finally ready to execute it 5:05 so we now send address 0101 5:08 to the memory dress register 5:13 now we're in the memory address register 5:15 we can finally send the address 5:18 down the address bus to main memory 5:24 this time we want to read the data 5:26 that's stored in memory 5:28 and so the control unit again sends a 5:30 read signal along the control bus 5:36 so main memories now receive an address 5:38 and a read signal 5:40 so the content stored at memory location 5:43 0101 5:44 can now be sent along the data bus back 5:46 to the cpu 5:47 and into the memory data register 5:54 finally the contents of the memory data 5:56 register are copied to the accumulator 5:59 and this is one of a number of general 6:00 purpose registers found in the cpu 6:04 this first instruction is now complete Branching 6:11 so what does this program actually do 6:14 you should be able to work it through 6:16 carefully and figure it out 6:19 we're now pointing instructions zero 6:21 zero zero one in the program counter 6:23 and we're ready to fetch the second 6:25 instruction 6:27 at the end of this video we're gonna 6:29 provide you with the answer 6:34 so let's talk a second about programs 6:37 that branch 6:40 on the left here we have a very simple 6:42 piece of pseudo code 6:44 line zero says first execute this line 6:46 of code 6:47 line 1 now execute this line and then 6:50 line 2 says 6:52 if the age is greater than 18 then 6:56 we're going to execute lines 3 and 4 6:58 otherwise 6:59 we're going to execute lines six and 7:02 seven 7:03 so this program doesn't necessarily 7:05 follow strictly in sequence from line 7:07 zero through to seven there's a chance 7:10 here the program may branch and jump 7:14 around 7:16 so we're going to pretend that this 7:17 program has been loaded into memory 7:20 each line of code on the left here has 7:23 ended up 7:24 as a location in memory now this is not 7:27 strictly how this would happen in this 7:28 one-to-one way 7:29 but for the purpose of example it's 7:31 absolutely fine 7:35 so the program counter starts by 7:37 pointing to memory address zero 7:39 and we fetch the first instruction 7:41 decode it and execute it 7:44 it then updates and tells us the next 7:47 instruction 7:48 is zero zero zero one because remember 7:50 the program counter is being incremented 7:52 so we fetch it decode it and we execute 7:55 line one of our program 7:59 we then fetch line two which in binary 8:01 is one 8:02 zero 8:06 now at this point depending on what 8:10 happens during the execution 8:11 of line two the program may be required 8:15 to fetch line three from memory or 8:18 line five from memory 8:25 so let's look at how this actually works 8:27 because we've said the program counter 8:28 simply gets incremented 8:31 well in the current instruction register 8:33 we have an instruction with the op code 8:36 0 1 1 0. 8:41 now when we look this up in the decode 8:43 unit we discover that this 8:45 code means branch always 8:51 this replaces the value held in the 8:54 program counter 8:56 with the contents of the operand that's 8:58 the second part of the instruction 9:01 from the current instruction register so 9:03 this case 9:04 one zero zero one 9:09 now when the next fetch cycle begins the 9:12 program counter is obviously checked 9:14 and as its contents have been previously 9:16 updated to a new memory location 9:19 and not simply incremented the program 9:22 effectively is able to jump 9:24 around memory 9:28 so having watched this video you should 9:30 be able to answer the following key 9:32 question 9:33 how does a cpu work 9:39 okay so let's um answer the question we 9:41 posed 9:42 earlier what did that program actually 9:48 do 9:50 so this is the first fetch to code 9:53 execute cycle 9:55 and this is the one that we ran through 9:57 in detail earlier 9:58 it effectively loaded the contents of 10:01 the memory 10:02 stored at location location0101 10:05 into the accumulator in other words 10:08 the dna number 3 is moved 10:11 from memory into the cpu 10:18 we then proceed onto the second fetch 10:20 decode execute cycle 10:23 now this one adds the contents of memory 10:27 located at 0 1 1 0 10:30 to the current contents of the 10:32 accumulator 10:34 so in other words the dna number one 10:38 because that's what's stored at address 10:40 zero one one zero 10:43 is added to the number three that was in 10:45 the accumulator 10:46 the results are stored back over the 10:48 accumulator 10:49 so effectively we've done three plus one 10:53 equals four 10:58 the third fetch to code execute cycle 11:00 stores the contents which are in the 11:02 accumulator 11:03 into memory location zero one one one 11:07 and that's because the op code the first 11:09 part of this current instruction 11:10 zero zero one one is the command to 11:13 store when we look it up in the decoder 11:15 unit 11:16 so in other words the result of the 11:17 previous calculation three plus one 11:19 equals four 11:20 is now written back into main memory 11:28 the fourth fetch decode execute cycle 11:30 outputs the contents of the accumulator 11:33 remember they were copied into main 11:34 memory but they're still held in the 11:35 accumulator 11:37 so in this simple abstraction the number 11:40 four is now 11:41 output to the user so they can see the 11:43 result of the calculation 11:49 the fifth and final fetch code execute 11:51 cycle 11:52 brings a halt to the current program 11:58 so this very simple program which has 12:01 five 12:02 fetch decode execute cycles has 12:04 performed the calculation 12:06 three plus one is then stored the result 12:09 in main memory 12:10 and displayed the result four to the 12:12 user 12:13 and in a high-level language this may 12:15 look something very similar to the 12:17 following two lines of code 12:20 sum variable equals num1 plus num2 12:24 print sum to the user 12:27 so you can start to get an appreciation 12:29 here of how the high level code you 12:32 write actually ends up being fetched 12:34 decoded 12:35 and executed inside a processor 12:38 of course your processor is doing 12:40 billions and billions of these 12:42 operations a second 12:43 which when you think about it is really 12:45 very impressive 12:52 [Music] 13:03 you. make 10 questions for a standerd of a level
Use this to make a quiz: Excellent! Using an online game is a fantastic way to boost engagement. Here is a list of scenarios you can use. I've designed them to be clear and concise for a game format. I've also added a few "challenge" scenarios at the end that could fit more than one theory to really get your students thinking critically. You can copy and paste these right into platforms like Kahoot!, Blooket, or Gimkit. --- ### **Scenarios for Your Online Game** **Instructions for Students:** Read the scenario and choose the theory that BEST explains why the crime was committed. 1. **Scenario:** An accountant has been secretly stealing small amounts of money from his clients' accounts for years. He has a system that he believes is foolproof, and he has calculated that the potential reward is worth the small risk of being caught. * **Best Fit:** Choice Theory 2. **Scenario:** A high school student who lives in a neighborhood with high unemployment and rundown buildings begins to vandalize property with a group of friends who feel ignored by the city. * **Best Fit:** Social Disorganization Theory 3. **Scenario:** A young woman desperately wants the new smartphone and designer clothes she sees all over social media, but she has no way to afford them. She decides to start stealing packages from front porches to get what she wants. * **Best Fit:** Strain Theory 4. **Scenario:** A man is arrested for assault after getting into a fight at a restaurant. His family tells the police that he has always had a "short fuse" and has struggled with anger and aggression since he was a child, a trait that his father also had. * **Best Fit:** Biological/Psychological Theory 5. **Scenario:** The youngest child in a family of well-known burglars is caught breaking into a house. When questioned, he says he learned everything he knows from watching and helping his older siblings. * **Best Fit:** Learning Theory 6. **Scenario:** A corporate executive is caught illegally dumping toxic waste to save his company money. He decided that the cost of proper disposal was too high and the chance of being caught was low. * **Best Fit:** Choice Theory 7. **Scenario:** After her parents' messy divorce, a teenager starts skipping school and shoplifting. A counselor suggests her actions stem from untreated anxiety and depression. * **Best Fit:** Biological/Psychological Theory 8. **Scenario:** In a community where the local factory closed down and police presence is low, a group of residents forms a vigilante group to "patrol" the streets, often resorting to violence and intimidation. * **Best Fit:** Social Disorganization Theory --- ### **Challenge Scenarios (Could fit multiple theories)** 9. **Scenario:** A college student starts selling forged concert tickets to pay for their tuition. They learned how to make the fake tickets from a video online and felt it was the only way to stay in school. * **Possible Answers:** Strain Theory (can't afford tuition), Learning Theory (learned online), Choice Theory (weighed the risks). 10. **Scenario:** A person living on the streets with no job prospects is arrested for stealing a warm coat from a department store during a blizzard. * **Possible Answers:** Strain Theory (no means to achieve the goal of being warm), Choice Theory (made a rational decision to steal to survive). These scenarios should give you great content for your game. Have fun with it, and let me know if you need any more!
Ciao ragazzi in questo video parleremo di integrali vedremo innanzitutto in maniera un po informale di che cosa si tratta poi cercheremo di darne una definizione un po più rigorosa e infine vedremo concretamente come fare a calcolarli supponevo quindi che ci vengano assegnate una certa funzione f dx e un certo intervallo ab sull'asse hicks allora potete pensare all'integrale della funzione f dx sull'intervallo abili come all'area della regione di piano che vi ho colorato qui in giallo e che vedete è sostanzialmente l'area sottesa dal grafico della funzione f dx all'interno dell'inter vallino ap né altre parole l'integrale definito tra e b della funzione f dx integrata index che si indica con questa notazione ci fornisce l'area consegna della regione di piano compresa tra il grafico di f dx l'asse hicks e le rette verticali hicks uguale a da edx uguale sa.ba perché dico aria con il segno ragazzi perché quello che accade è che se il grafico della funzione f dx che io ho preso qui al di sopra della sx fosse invece al di sotto quindi se volete se la funzione f dx fosse negativa nell'inter vallino abi che ci interessa allora avremo che il risultato dell'integrale coinciderebbe con un numero che è l'area cambiata però disegno queste considerazioni sull'interpretazione geometrica dell'integrale ed in particolare sulle eventuali segno da dare all'area riprenderemo meglio in uno dei video successivi e vi saranno più chiare tra un attimo quando ci occuperemo della definizione formale dell'integrale prima però cerchiamo di capire come si chiamano le varie parti che compongono questa notazione l'intervallo avente come estremi a e b lungo qui svolgiamo l'operazione di integrazione prende il nome di intervallo o se volete anche zona di integrazione mentre la funzione f dx che stiamo integrando quindi quella di cui ci interessa l'area del sotto grafico prendendo a me di funzione integrando mentre dell'ics che ci compare qui in fondo a chiusura della notazione ci ricorda che stiamo integrando rispetto alla variabile cerchiamo a questo punto di capire come si fa a definire ha vigorosamente ed integrale e nel fare questo cominciamo considerando il caso di una funzione costante che valga sempre k e che abbia quindi come grafico una retta orizzontale per funzioni di questo tipo quindi funzioni che assumano sempre lo stesso valore all'interno dell'intervallo che ci interessa integrale viene definito dal prodotto della lunghezza dell'intervallo quindi p meno a x il valore costante che la funzione assume all'interno dell'intervallo quindi k e coincide quindi con l'area con segno del rettangolino che si viene a costruire tra il grafico della funzione l'asse hicks e le rette verticali hicks uguale ad a ed hicks uguale a b e capiti anche perché l'area col segno x che vedete b meno a che rappresenta la lunghezza della base viene sicuramente positivo infatti bit è più grande di a mentre il valore k costante che assume la funzione potrebbe anche essere negativo se questa retta orizzontale stesse al di sotto capite dell'asse delle ascisse e quindi quello che accade che il prodotto di queste due quantità ci fornisce l'area del rettangolino se k e maggiore di zero mentre ci fornirebbe l'area del rettangolino cambiata disegno se k fosse una quantità negativa abbiamo quindi visto che definire l'integrale risulta abbastanza semplice se la nostra funzione è costante e risulta un'operazione poco più complicata se la nostra funzione invece di essere costante è costante a tratti le funzioni costanti a tratti dette anche funzioni a scala non sono altro che funzioni come quella che vi ho riportato qui che assumano un certo valore per esempio k con uno in un primo intervallo poi assumono un nuovo valore per esempio k con due in un secondo intervallo e così via per un certo numero di intervalli che io che ho chiamato genericamente n quindi nell'ennesimo intervallino la funzione assumerà il valore k con n capite che a questo punto il nostro intervallo ab illo possiamo pensare come suddiviso in tanti intervalli più piccoli e vedete che ho chiamato hicks con 0 ed hicks con uno gli estremi qui del primo intervallino poi avremo hicks con uno e di xco gli estremi del secondo e così via finché a questo punto l'ultima sarebbe hicks con n e il precedente hicks con è nemmeno uno e naturalmente avremo che hicks con zero coincide con all'inizio ed hicks con n coinciderebbe quindi con b per una funzione di questo tipo quindi per una funzione a scala l'integrale viene definito come la somma algebrica delle aree prese naturalmente consegna dei vari rettangolini che si vengono a creare vedete in corrispondenza di ciascuno dei tratti in cui la funzione risulta costante vedete che i due termini che compaiono moltiplicati all'interno della sommatoria non sono altro che la base è l'altezza presa col segno del jesi mo rettangolino della nostra sequenza di n rettangolini complessivi e quindi fare la sommatoria per i che va da 1 fino ad n significa proprio poi sommare tutti questi contributi tra di loro fin qui quindi è tutto abbastanza easy l'unica differenza tra il primo caso il secondo caso se volete è che invece di avere un unico rettangolino abbiamo di sotto più rettangolini ma si tratta comunque di fare delle aree di rettangoli eventualmente prese e consegnò la faccenda diventa invece molto meno banale quando la nostra funzione non è costante perché a questo punto il sotto grafico vedete è diventato un trappeto ed è già una figura che assomiglia a un trapezio vedete a due lati paralleli ma al posto di avere un lato obliquo cern passatemi il termine un lato storto e questo naturalmente complica la cosa perché non abbiamo più una formula comoda come l'area del rettangolo da poter utilizzare come fare quindi a cavarsela in questo caso l'idea è fondamentalmente quella di andare a considerare delle funzioni a scala che siano sempre maggiori uguali della nostra funzione f dx vedete io qui viene disegnata una che ho chiamato hdx e vedete che sta sempre al di sopra o al limite eventualmente coincide con la nostra funzione f dx e quello che possiamo fare sostanzialmente approssimare il valore dell'area che vogliamo calcolare con l'integrale della funzione a scala verde e questo integrale della funzione a scala verde l'abbiamo definito prima non è altro che la somma delle aree di questi rettangolini prese con il proprio segno più precisamente possiamo dire che l'area del sotto grafico che ci riproponiamo di calcolare deve essere minore o uguale dell'integrale tra i big della funzione a scala hdx ed è anche chiaro che di funzione a scala hdx che siano sempre maggiori uguali della funzione f all'interno dell'intervallo ab non c'è solo questa ce ne sono naturalmente infinite e di queste infinite funzioni come potete notare dando un occhiata questa animazione ce ne sono alcune che approssimano meglio di altre l'area gialla che ci riproponiamo di calcolare e di conseguenza se noi considerassimo l'insieme di queste infinite funzioni e più precisamente l'insieme dei loro integrali ci aspettiamo che l'estremo inferiore di questo insieme coincide sostanzialmente con l'area che vogliamo calcolare e questo perché i ragazzi perché funzioni a scala di questo tipo sostanzialmente approssimano per eccesso la funzione viola e quindi il loro integrale ci fornirà una sovrastima dell'area e quindi se immaginassimo di prendere vi avviate le funzioni a scala che approssimano sempre meglio il comportamento della f ci aspettiamo in tutta risposta che i loro integrale diventino sempre più piccoli cioè sempre più vicini al valore vero dell'area che stiamo cercando di calcolare e quindi capite che il valore dell'area diventa proprio qui il numero a cui questi integrali tendono a mano a mano che miglioriamo l'approssimazione e quindi capite diventa l'estremo inferiore del loro insieme naturalmente lo stesso giochino che noi abbiamo appena fatto con le funzioni hdx che sovrastimano la funzione f1 lo potrebbe fare con delle funzioni a scala tipo la gdx che vi ho disegnato qui che invece sottostimano il valore di f cioè sono delle funzioni a scala che sono sempre minori uguali dalla effe dx è chiaro che similmente a quanto accadeva prima di funzioni gdx di questo tipo ce ne sono infinite e naturalmente alcune approssimeranno meglio di altre l'andamento della funzione f e dunque se consideriamo gli insieme dei loro integrali possiamo pensare al valore dell'area che vogliamo calcolare come all'estremo sud di ore di questo insieme se quindi come spesso accade l'estremo superiori di un insieme coincide con l'estremo inferiore dell'altro allora si dice che la funzione arimany integrabile sull'intervallo a b ed il valore comune è proprio l'integrale della funzione f calcolato sull'intervallo ab cosa che geometricamente possiamo interpretare come la misura nell'area o perché ho detto se come spesso accade questi due valori coincidono perché in realtà potrebbe sembrare scontato che debbano coincidere nel senso che ci si immagina che si all'estremo superiore di questo insieme che l'estremo inferiore di quest'altro insieme sostanzialmente debbano restituire l'area in realtà però ci sono dei casi di funzioni anche limitate ma molto particolari in cui questo non accade se siete curiosi e guardate che sono funzioni comunque molto poco frequenti vi lascio un link nella descrizione qui sotto dove potete approfondire la cosa capito questo vediamo adesso come si fa concretamente a calcolare un integrale e in maniera se volete in un certo senso analoga a quanto accadeva per le derivate per fare il calcolo degli integrali non si sfrutta direttamente la definizione che abbiamo appena dato un po come quando dovete calcolare una derivata e non vi sporcate le mani direttamente con il limite del rapporto incrementale che sarebbe proprio la definizione della derivata ci sono delle strategie più efficaci più rapide se volete per fare questo calcolo ecco qualcosa di simile accade con gli integrali e cerchiamo di capire concretamente come si fa la prima cosa che devo fare se voglio calcolare l'integrale di una certa funzione f dx sull'intervallo ab è quella di trovare un'altra funzione che nell'intervallo ab abbia la nostra fbx come derivata cioè dove trovare una cosiddetta primitiva della funzione f dx una volta trovata e di solito la si indica con f grande se la funzione di partenza la effe piccolo si va a calcolarla nei due estremi di integrazione è una volta che siano questi due valori c'è una volta che abbiamo f grande di b ed f grandi di a è sufficiente sottrarli per trovare proprio il valore dell'integrale quindi fondamentalmente la procedura è basata tre passaggi provo una primitiva la calcolo nei due estremi di integrazione e sottraggo questi due numeri il risultato è proprio il valore dell'integrale per capire meglio la cosa consideriamo subito un esempio e supponiamo quindi di dover calcolare l'integrale tra 0 e 5 d3x quadro index allora per prima cosa dobbiamo trovare una funzione che abbia 3x quadro come derivata nell'intervallo 05 e se ci pensate bene qual è una funzione che a 3x quadro come derivata per esempio la funzione hicks al cubo che noi dobbiamo andare a calcolare negli estremi di integrazione che sono hicks uguale a 5 ed hicks uguale a zero e vedete che per indicare che la dobbiamo calcolare proprio nei due estremi 5 è 0 si utilizza questa notazione con due parentesi quadrate e si riportano gli estremi 1 qui in alto e l'altro qui in basso quindi questa notazione sottende che adesso questo hicks al cubo lo dovremmo calcolare prima i knicks uguale a 5 e poi i knicks uguale a zero e poi dovremmo sottrarre i due valori che otteniamo se quindi lo facciamo concretamente vedete che otteniamo 5 elevato alla terza che non è altro che la primitiva hicks alla terza calcolata mettendo al posto della x5 e gli dobbiamo poi sottrarre sempre la primitiva hicks alla terza calcolata però i knicks uguale a zero cioè mettendo 0 al posto della ics e
Animal Rights and Diet Success Criteria I can explain key terms which describe the type of diets people have I can explain the advantages and disadvantages of different types of diet Animal Rights and Diet Match up the terms with the meaning Term Meaning Omnivore - eats fish but no other type of meat Vegetarian - eats most types of meat and vegetables Pescetarian - doesn’t eat any products that come from animals Vegan - doesn’t eat meat but will eat dairy products like milk Place the different diets on a spectrum All meat No animal products at all Vegetarian Vegan Omnivore Pescetarian Omnivore Omnivore Most people in the UK are omnivores Match the countries with the amount of meat eaten per person per year Country Meat per person per year India 9.9 kg USA 4.4 kg Bangladesh 120 kg UK 111.5kg Nepal 84.2 kg Australia 4 kg Numeracy How much meat is consumed in the UK per year? (Amount of meat eaten X the UK population) 2. How much meat is consumed in Bangladesh per year? (Amount of meat eaten X the Bangladesh population) Country Meat per person per year USA 120 kg Australia 111.5kg UK 84.2 kg Nepal 9.9 kg India 4.4 kg Bangladesh 4 kg UK – 64 million Bangladesh – 165 million http://www.telegraph.co.uk/travel/maps-and-graphics/world-according-to-meat-consumption/ 7 Why do people eat meat? Discuss Tradition (their family has always done it) Culture (celebrations) Taste Convenience Nutrients such as B12, protein and iron Consumption of meat is rising across developing countries because higher incomes generally mean more meat eating. Pescetarian "Yeah, I'm a vegetarian." "But that looks like fish you're eating." "Oh yeah, I eat fish.“ An estimated 5% - 6% of people in the UK are pescetarians. How many people is this? Approx. 3.6 million Calculation – 66,000,000 /100 x 5.5 = 3,630,000 9 Which group is cuter? Animals Fish 10 People often don’t feel as much love for fish as they do for fluffy, cute mammals. The may think fish don’t feel pain. They may be fussy. They think fish isn’t meat. Not farmed as much as mammals; can be wild. To get nutrients they wouldn’t get from just vegetables and grains. (Omega 3 is in plants but in higher concentrations in oily fish) Why are people pescetarians? https://www.vegsoc.org/sslpage.aspx?pid=753 http://articles.mercola.com/omega-3.aspx Fish – In a perfect world, fish can provide you all the omega-3s you need. Unfortunately, the vast majority of the fish supply is now heavily tainted with industrial toxins and pollutants, such as heavy metals which include mercury, lead, arsenic, and cadmium, PCBs, and radioactive poisons. These toxins make eating fish no longer recommended. 11 Vegetarianism Vegetarians will not eat any meat or product that comes from the slaughter of animals e.g. gelatine. About 3% of the UK population are vegetarian. How many people is this? 1.9 million 12 Why are people vegetarian? They don’t like the idea that animals are killed so they can eat Health reasons Don’t like meat Brought up vegetarian Environmental reasons Religious reasons (e.g. some Buddhist, Hindus) Watch the following clip twice. The second time, write down the fact which surprises you the most. https://www.youtube.com/watch?v=VW6wfpHFdaI The World Health Organization has classified processed meats – including ham, salami, sausages and hot dogs – as a Group 1 carcinogen (same as smoking/alcohol) which means that there is strong evidence that processed meats cause cancer. Red meat, such as beef, lamb and pork has been classified as a 'probable' cause of cancer. 13 Veganism Not just a diet Around 1% of the population of UK are vegans. A vegan is described by the Vegan Society as “a philosophy and way of living which seeks to exclude—as far as is possible and practicable—all forms of exploitation of, and cruelty to, animals for food, clothing or any other purpose; and by extension, promotes the development and use of animal-free alternatives for the benefit of humans, animals and the environment. In dietary terms it denotes the practice of dispensing with all products derived wholly or partly from animals” Why are people vegan? Why are people vegan? James Aspey: https://www.youtube.com/watch?v=a22XxXP3nU8 Warning: some of the content in this video clip may upset some viewers from 7:14 – 8:11 https://www.youtube.com/watch?v=BtqXeym7H8A Why are people vegan? “Don’t want bad karma” Feel healthier Reduce chances of diseases. Example heart disease. Don’t want to exploit animals Believe in animal rights Sustainability Environment Create a Table of Pros & Cons of Veganism Pros √ Cons - Create a Table of Pros & Cons of Veganism Pros Cons No animals have died for you to eat Some people think it is healthier Help the environment Fewer antibiotics/chemicals that are given to some animals Makes you feel good No vitamin B12 so have to supplement Harder to find food at shops or restaurants May be harder to get enough iron May be more expensive to get substitute meats Judged by family and friends Could put farmers out of business Group Work Source 1 Summarise it in your jotter Explain what the source is/what it says What does it suggest? What is your opinion? Feedback to rest of class https://www.youtube.com/watch?v=SYyjel5VuHg Farmer’s Poem
calculator
Calculator Battle
Calculator Functions
Non Calculator Percentages