TURNER WHITTED S RAY-TRACING ALGORITHM: PRACTICE PROGRAMAÇÃO 3D MEIC/IST

Size: px
Start display at page:

Download "TURNER WHITTED S RAY-TRACING ALGORITHM: PRACTICE PROGRAMAÇÃO 3D MEIC/IST"

Transcription

1 TURNER WHTTED S RAY-TRACNG AGORTHM: PRACTCE PROGRAMAÇÃO 3D MEC/ST

2 Ray Tacig Histoy

3 Ray Tacig Histoy

4 Whitted ay tacig t combies i a sige mode: Hidde suface emova Shadig due to diect iumiatio Shadig due to idiect iumiatio (efectio ad efactio effects due to efective/tasucid objects) Shadow computatio (had shadows)

5

6 mage Redeig ight Pixe (RGB) y e Camea umiatio z e eye x e Objects y o x o z o

7 Ray Castig Fo each pixe i the viewpot; shoot a ay; fo each object i the scee compute itesectio ay-object; stoe the cosest itesectio; if thee is a itesectio shade the pixe usig coo, ights, mateias; ese /* ay misses a objects */ shade the pixe with bacgoud coo

8 Ray-Tacig de Tue Whitted Bacwad Ray Tace We tace ight ays fom the eye though a pixe i the viewpot - pimay ays ie we foow ight beams i the evese diectio of the ight popagatio Fid the itesectio with the fist object duig the bacwads tace of the ay The coo of the ay (hece at the equied pixe) is made up of 3 cotibutios: -oca coo due to diect iumiatio (it ca be i shadow) ad ambiet ight ; -coo fom a ay comig fom the efectio diectio efected ay; - coo fom a ay comig fom the efactio diectio tasmitted o efatced ay; Shadow feees, efected ad efacted ays ae caed secoday ays Defie the viewpoit, the view widow ad the viewpot esoutio fo each pixe i the viewpot { compute a ay i Wod space fom the eye towads the pixe; pixe_coo = tace ( scee, eye, pimay ay diectio, 1); }

9 Agoithm s ecusive atue R 2 2 R 1 T1 1 3 T 2 R 3 1 R 1 2 T 1 3 R 2 R 3 T 2

10 Coo tace (Scee scee, Vecto3d oigi, Vecto3d ay diectio, it depth) { itesect ay with a objects ad fid a hit poit (if ay) cosest to the stat of the ay if (!itesectio poit) etu BACKGROUND; ese { coo = object mateia s ambiet coo; compute oma at the hit poit; fo (each souce ight) { = uit ight vecto fom hit poit to ight souce; if ( oma>0) if (!poit i shadow); //tace shadow ay coo += diffuse coo + specua coo; } if (depth >= maxdepth) etu coo; if (efective object) { Ray = cacuate ay i the efected diectio; Coo = tace(scee, poit, Ray diectio, depth+1); educe Coo by the specua efectio coefficiet ad add to coo; } if (tasucid object) { tray = cacuate ay i the efacted diectio; tcoo = tace(scee, poit, tray diectio, depth+1); educe tcoo by the tasmittace coefficiet ad add to coo; } etu coo; }

11 ResY (pixes) height (eft) (ight) The axes i the Camea Fame y e v z e eye x e u Viewig diectio viewig widow-viewpot tasfomatio y e t (top) o x e ResX (pixes) width b (bottom)

12 Camea Positio ad Oietatio eye = viewe at = taget poit i the cete of viewig widow (ea pae i OpeG), up = up diectio view = at - eye y 0 up eye up at x 0 eye fovy at z 0 Wod Coodiates ea fa

13 Camea Fame - x e y e z e (uv) up eye data: eye, at, up z 0 y 0 at view = at - eye x 0 z e 1 eye at up eye eye at z e y 0 at view x 0 z 0

14 Camea Fame - x e y e z e (uv) x e up eye z e x e 1 upz e upz e y 0 at view y e up z 0 x 0 x e eye z e view x e y e y 0 up z e at at eye z 0 x 0 y e z e x e

15 Pimay Rays d aio : p( t) o td y w x w o eye z w d p xy eye

16 h Computig Pimay Rays v ResY-1 y 2 1 Ray at the eft-bottom coe of the uit squae pixe p xy (w/2, h/2) p xy u( x) v( y) x Re sx y Re sy w o ( ) u ( ) v 1 u x v y h (-w/2, -h/2) o x ResX-1 u w p xy o x 1 w xe Re sx h y Re sy y e

17 Ray at the cete of the squae pixe p xy o 1 w x 0.5 Re sx x e h y Re 0.5 sy y e fo uit squae pixes, ie. s=1;

18 Computig Pimay Rays Ray at the eft-bottom coe of the squae pixe d y o ay : p( t) o eye o td x o d f eye at z o d d f z e h y Re sy 1 y 2 e w x Re sx 1 2 x e

19 Computig Pimay Rays fo Pixe aea Viewig Widow: (eft, bottom) ad (ight, top) Viewpot: ResX, ResY x ad y ae positios withi a uit squae pixe x p e xy ad y e u( x) x ae i Wod cood so p e v( y) y e xy is aso i WCS u( x) eft ( ight eft) x x Re sx v( y) d d bottom ( top bottom) f z e u( x) y e u( y) x e y y Re sy

20 Camea Data i C stuct _Camea { /* Camea defiitio*/ Vecto eye, at, up; foat fovy; foat ea,fa; //hithe ad yo paes it ResX,ResY; foat w,h; Vecto xe,ye,ze; //uv fame }; typedef stuct _Camea Camea; Camea* camceate( Vecto eye, Vecto at, Vecto up, doube fovy, doube ea, doube fa, it ResX, it ResY ); Ray camgetpimayray( Camea camea, doube x, doube y );

21 The Camea object itiaizatio: Data iput: fov, ResX, ResY, ea, fa, eye, at, up Give: x, y d f eye at 1 z e eye at Ray i paametic fom : o + td o eye d d h 2d f ta fov 2 f w Re sx Re sy h 1 eye at xe upze upze z e (omaize d; why?) Ray at the eft-bottom coe of the squae pixe h y Re sy 1 2 y e w x Re sx 1 2 y e x e z e x e

22 Shadow Feeees Shadow ay : p( t) p i t s s p i No ight at that poit

23 tesectios computatio Read the sides Geomety tesectios Sef-itesectios pobem due to foatig-poit pecisio (secoday ays ad shadow-feees) Soutio: Sighty offset itesectios Read the atice : Adew Woo et a., t s Reay Not a Redeig Bug, You See, EEE CG&A, Septembe 1996, vo. 21

24 Áea apaete eegia umiosa (umes) A i A 2 umes / m eegia umiosa (umes) ' A A cos i' A cos umes / m 2

25 Refectio Mode fo ambet Sufaces uz icidete uz icidete uz icidete 1. Refete iguamete em todas as dieções 2. Diffuse tesity: iea vaiatio with age cos

26 Diffuse Refectio Compoet 1 cos - /2 0 /2 p i g b g b d dg db cos cos cos

27 Diffuse Refectio Compoet,, [0,1 ] Eq. 1 db dg d b g db b dg g d db b dg g d b g cos cos cos db b dg g d b g

28 Ambiet pus Diffuse: db dg d b g db dg d ab ag a b g

29 Specua Refectio Compoet v Specua aea v =1 =4 =8-1 -0,5 0 0,5 1 g b especua g b s sg sb cos cos cos Eq.2,, [0,1 ]

30 Specua Refectio Compoet sb sg s b g db dg d b g db dg d ab ag a b g v

31 Specua Refectio Compoet uz efetida v p i

32 Specua Refectio Vecto 2 h h h ) ( h

33 Refectio Distibutio v p i Ambiet Diffuse Specua C C amb C uz dif C v uz s

34 Mutipe ight Souces uzes sb sg s b g db dg d b g db dg d ab ag a b g v v v ) 2( uzes sb sg s b g db dg d b g db dg d ab ag a b g ) 2(

35 Shadow Feeees Shadow ay : p( t) p i t s s p i No ight at that poit

36 Mode with mutipe ights ad shadow othewise 1 i shadow if 0 f s uzes sb sg s b g db dg d b g s db dg d ab ag a b g f

37 Refectios fom othe objects efected ay : p( t) p i t v p i Refective suface

38 Tasucid objects Raio efatado : p( t) p t i t 1 v h 1 p i t 2 h 2 Se aw h1 si 2 h 2 si 1

39 Refacted Ray v t ( v ) v v v t i p i v t sii v t si t hi sii h t t 2 cos t 1si t t t 1 v t v t t si t efacted ay : t cos ( ) t p( t) p i t t

40 Advetêcia: Refação ão é simpes!

41 Objectos efetoes e taspaetes edução da taspaêcia edução da efexão ) ( ) ( ) ( ) (1 ) ( ) ( ) ( t b t g t b g uzes sb sg s b g db dg d b g s db dg d ab ag a b g o f

42 Textuas v 1.0 v 1.0 v u u u Textuas 2D = mages ode o domíio é u, v [0,1] [0,1] R 2

43 Sistemas de coodeada de textua a caixa face x=x max v (0,0) u v (1,1) u (0,0) v u y y y y max mi mi (0,0) y u v z z z z max mi mi z x

44 Sistema de coodeadas de textua a esfea x y z si si cos si cos y x z z y x x y 2 2 ta / ta 1 1 v u 1) ( 1) ( w u j h v i i j

45 Sistema de coodeadas de textua o tiâguo v 3 (u 3,v 3 ) v 3 v 1 = v 2 u 1 = u 3 u 2 u 1 (u 1,v 1 ) 2 (u 2,v 2 )

46 Textua o tiâguo e coodeadas baicêticas p 1 v 12 v 23 v 31 2 / ) ( 2 / ) ( 2 / ) ( p p v p p v p p v i i i A A A A 3 A 1 A A A A A T T T T A A A A A A / / / p 2 p 3 it p i v u v u v u v u i i ) (

47 Textua

48 Textuas de ugosidade (bump textues) e Textuas de desocametos (dispacemet mappig) ' (, ) Petuba aeatoiamete as omais dos objetos Petuba aeatoiamete as posições dos potos

49 y=-x y=x Textua ambiete (eviomet maps) z=x (1,1) face dos aios x>y e x>z z x y u y x 2x v (0,0) u z=-x v z x 2x

50 Pocessameto ati-aiasig a dx dy sub-pixes pixe dx, dy = vaiáveis aeatóias ace um aio paa cada sub-pixe Faça uma média dos vaoes obtidos

51 Ati-aiasig pixe pixe pixe (a) oigia (b) uifome (c) jitteed

52 Refiameto Pogesivo amostagem iicia pimeia subdivisão seguda subdivisão subdivisão fia pixes sedo visitados pixes já visitados

53 Radiosidade e Ray Tacig stadad aytacig goba iumiatio Kaus Muee, Stoy Boo Uivesity, Compute Sciece (CSE 564)

54 Todays State of the At - Some Sapshots

55

56

57

58

59 RT Acceeatio Moe efficiet computatios Hieachica data stuctues: Kd-Tee, BVH o Gids

Interactive Computer Graphics. The Graphics Pipeline. The Graphics Pipeline. The Graphics Pipeline. The Graphics Pipeline: Illumination and Shading

Interactive Computer Graphics. The Graphics Pipeline. The Graphics Pipeline. The Graphics Pipeline. The Graphics Pipeline: Illumination and Shading Iteactive Compute Gaphics The Gaphics Pipeie: Iumiatio ad Shadig The Gaphics Pipeie Modeig Tasfomatios Iumiatio (Shadig) Viewig Tasfomatio (Pespective / Othogaphic) Cippig Iput: - geometic mode - iumiatio

More information

2012 GCE A Level H2 Maths Solution Paper Let x,

2012 GCE A Level H2 Maths Solution Paper Let x, GCE A Level H Maths Solutio Pape. Let, y ad z be the cost of a ticet fo ude yeas, betwee ad 5 yeas, ad ove 5 yeas categoies espectively. 9 + y + 4z =. 7 + 5y + z = 8. + 4y + 5z = 58.5 Fo ude, ticet costs

More information

physicsandmathstutor.com

physicsandmathstutor.com physicsadmathstuto.com physicsadmathstuto.com Jauay 2009 2 a 7. Give that X = 1 1, whee a is a costat, ad a 2, blak (a) fid X 1 i tems of a. Give that X + X 1 = I, whee I is the 2 2 idetity matix, (b)

More information

physicsandmathstutor.com

physicsandmathstutor.com physicsadmathstuto.com physicsadmathstuto.com Jue 005. A cuve has equatio blak x + xy 3y + 16 = 0. dy Fid the coodiates of the poits o the cuve whee 0. dx = (7) Q (Total 7 maks) *N03B034* 3 Tu ove physicsadmathstuto.com

More information

Specifying the view transformation

Specifying the view transformation 3D to D Pojectio Po. Aao Latema Based o sides b Po. Hsie-Hsi Sea Lee Schoo o Eectica ad Compute Egieeig Geogia Istitute o Techoog Speciig the view tasomatio Most commo paameteied b: Positio o camea Positio

More information

Minimization of the quadratic test function

Minimization of the quadratic test function Miimizatio of the quadatic test fuctio A quadatic fom is a scala quadatic fuctio of a vecto with the fom f ( ) A b c with b R A R whee A is assumed to be SPD ad c is a scala costat Note: A symmetic mati

More information

Technical Report: Bessel Filter Analysis

Technical Report: Bessel Filter Analysis Sasa Mahmoodi 1 Techical Repot: Bessel Filte Aalysis 1 School of Electoics ad Compute Sciece, Buildig 1, Southampto Uivesity, Southampto, S17 1BJ, UK, Email: sm3@ecs.soto.ac.uk I this techical epot, we

More information

physicsandmathstutor.com

physicsandmathstutor.com physicsadmathstuto.com physicsadmathstuto.com Jue 005 5x 3 3. (a) Expess i patial factios. (x 3)( x ) (3) (b) Hece fid the exact value of logaithm. 6 5x 3 dx, givig you aswe as a sigle (x 3)( x ) (5) blak

More information

Merging to ordered sequences. Efficient (Parallel) Sorting. Merging (cont.)

Merging to ordered sequences. Efficient (Parallel) Sorting. Merging (cont.) Efficient (Paae) Soting One of the most fequent opeations pefomed by computes is oganising (soting) data The access to soted data is moe convenient/faste Thee is a constant need fo good soting agoithms

More information

CHAPTER 5 : SERIES. 5.2 The Sum of a Series Sum of Power of n Positive Integers Sum of Series of Partial Fraction Difference Method

CHAPTER 5 : SERIES. 5.2 The Sum of a Series Sum of Power of n Positive Integers Sum of Series of Partial Fraction Difference Method CHAPTER 5 : SERIES 5.1 Seies 5. The Sum of a Seies 5..1 Sum of Powe of Positive Iteges 5.. Sum of Seies of Patial Factio 5..3 Diffeece Method 5.3 Test of covegece 5.3.1 Divegece Test 5.3. Itegal Test 5.3.3

More information

Local Illumination. Outline. The Big Picture. Radiometry. Radiometry. Radiometry. hc λ Φ = Introduction Radiometry Reflectance Reflectance Models

Local Illumination. Outline. The Big Picture. Radiometry. Radiometry. Radiometry. hc λ Φ = Introduction Radiometry Reflectance Reflectance Models Loca Iumato Oute Itoucto Raomety Refectace Refectace Moe The Bg Pctue Raomety Eegy of a photo hc 34 8 e = h 6.63 10 J c 3 10 m / λ λ Raat Eegy of photo Q = Raato fux (eectomagetc fux, aat fux) Ut: Watt

More information

a) The average (mean) of the two fractions is halfway between them: b) The answer is yes. Assume without loss of generality that p < r.

a) The average (mean) of the two fractions is halfway between them: b) The answer is yes. Assume without loss of generality that p < r. Solutios to MAML Olympiad Level 00. Factioated a) The aveage (mea) of the two factios is halfway betwee them: p ps+ q ps+ q + q s qs qs b) The aswe is yes. Assume without loss of geeality that p

More information

Path Tracing. Monte Carlo Path Tracing

Path Tracing. Monte Carlo Path Tracing Page 1 Monte Calo Path Tacing Today Path tacing Random wals and Maov chains Adjoint equations Light ay tacing Bidiectional ay tacing Next Heni Wann Jensen Iadiance caching Photon mapping Path Tacing Page

More information

Chapter 2 The Monte Carlo Method

Chapter 2 The Monte Carlo Method Chapter 2 The Mote Carlo Method The Mote Carlo Method stads for a broad class of computatioal algorithms that rely o radom sampligs. It is ofte used i physical ad mathematical problems ad is most useful

More information

= 5! 3! 2! = 5! 3! (5 3)!. In general, the number of different groups of r items out of n items (when the order is ignored) is given by n!

= 5! 3! 2! = 5! 3! (5 3)!. In general, the number of different groups of r items out of n items (when the order is ignored) is given by n! 0 Combiatoial Aalysis Copyight by Deiz Kalı 4 Combiatios Questio 4 What is the diffeece betwee the followig questio i How may 3-lette wods ca you wite usig the lettes A, B, C, D, E ii How may 3-elemet

More information

ANNEXE C Modèle mathématique du robot lego NXT

ANNEXE C Modèle mathématique du robot lego NXT ANNEXE C Modèe athéatique du oot ego NX tié de a otice NXay-GS Mode-Based Desig - Coto of sef-aacig to-heeed oot uit ith LEGO Midstos NX, Yoihisa Yaaoto. 3 NXay-GS Modeig his chapte descies atheatica ode

More information

Other quantum algorithms

Other quantum algorithms Chapte 3 Othe uatum agoithms 3. Quick emide of Gove s agoithm We peset hee a uick emide of Gove s agoithm. Iput: a fuctio f : {0,}! {0,}. Goa: fid x such that f (x) =. Seach pobem We have a uatum access

More information

physicsandmathstutor.com

physicsandmathstutor.com physicsadmathstuto.com 2. Solve (a) 5 = 8, givig you aswe to 3 sigificat figues, (b) log 2 ( 1) log 2 = log 2 7. (3) (3) 4 *N23492B0428* 3. (i) Wite dow the value of log 6 36. (ii) Epess 2 log a 3 log

More information

On composite conformal mapping of an annulus to a plane with two holes

On composite conformal mapping of an annulus to a plane with two holes O composite cofomal mappig of a aulus to a plae with two holes Mila Batista (July 07) Abstact I the aticle we coside the composite cofomal map which maps aulus to ifiite egio with symmetic hole ad ealy

More information

Math 209 Assignment 9 Solutions

Math 209 Assignment 9 Solutions Math 9 Assignment 9 olutions 1. Evaluate 4y + 1 d whee is the fist octant pat of y x cut out by x + y + z 1. olution We need a paametic epesentation of the suface. (x, z). Now detemine the nomal vecto:

More information

Quantum Mechanics Lecture Notes 10 April 2007 Meg Noah

Quantum Mechanics Lecture Notes 10 April 2007 Meg Noah The -Patice syste: ˆ H V This is difficut to sove. y V 1 ˆ H V 1 1 1 1 ˆ = ad with 1 1 Hˆ Cete of Mass ˆ fo Patice i fee space He Reative Haitoia eative coodiate of the tota oetu Pˆ the tota oetu tota

More information

Review Exercise Set 16

Review Exercise Set 16 Review Execise Set 16 Execise 1: A ectangula plot of famland will be bounded on one side by a ive and on the othe thee sides by a fence. If the fame only has 600 feet of fence, what is the lagest aea that

More information

Ground Rules. PC1221 Fundamentals of Physics I. Uniform Circular Motion, cont. Uniform Circular Motion (on Horizon Plane) Lectures 11 and 12

Ground Rules. PC1221 Fundamentals of Physics I. Uniform Circular Motion, cont. Uniform Circular Motion (on Horizon Plane) Lectures 11 and 12 PC11 Fudametals of Physics I Lectues 11 ad 1 Cicula Motio ad Othe Applicatios of Newto s Laws D Tay Seg Chua 1 Goud Rules Switch off you hadphoe ad page Switch off you laptop compute ad keep it No talkig

More information

Lecture 24: Observability and Constructibility

Lecture 24: Observability and Constructibility ectue 24: Obsevability ad Costuctibility 7 Obsevability ad Costuctibility Motivatio: State feedback laws deped o a kowledge of the cuet state. I some systems, xt () ca be measued diectly, e.g., positio

More information

Lecture 6: October 16, 2017

Lecture 6: October 16, 2017 Ifomatio ad Codig Theoy Autum 207 Lectue: Madhu Tulsiai Lectue 6: Octobe 6, 207 The Method of Types Fo this lectue, we will take U to be a fiite uivese U, ad use x (x, x 2,..., x to deote a sequece of

More information

Vector d is a linear vector function of vector d when the following relationships hold:

Vector d is a linear vector function of vector d when the following relationships hold: Appendix 4 Dyadic Analysis DEFINITION ecto d is a linea vecto function of vecto d when the following elationships hold: d x = a xxd x + a xy d y + a xz d z d y = a yxd x + a yy d y + a yz d z d z = a zxd

More information

Coordinate Geometry. = k2 e 2. 1 e + x. 1 e. ke ) 2. We now write = a, and shift the origin to the point (a, 0). Referred to

Coordinate Geometry. = k2 e 2. 1 e + x. 1 e. ke ) 2. We now write = a, and shift the origin to the point (a, 0). Referred to Coodinate Geomet Conic sections These ae pane cuves which can be descibed as the intesection of a cone with panes oiented in vaious diections. It can be demonstated that the ocus of a point which moves

More information

Chapter 8 Complex Numbers

Chapter 8 Complex Numbers Chapte 8 Complex Numbes Motivatio: The ae used i a umbe of diffeet scietific aeas icludig: sigal aalsis, quatum mechaics, elativit, fluid damics, civil egieeig, ad chaos theo (factals. 8.1 Cocepts - Defiitio

More information

1D2G - Numerical solution of the neutron diffusion equation

1D2G - Numerical solution of the neutron diffusion equation DG - Numeical solution of the neuton diffusion equation Y. Danon Daft: /6/09 Oveview A simple numeical solution of the neuton diffusion equation in one dimension and two enegy goups was implemented. Both

More information

Advanced Higher Formula List

Advanced Higher Formula List Advaced Highe Fomula List Note: o fomulae give i eam emembe eveythig! Uit Biomial Theoem Factoial! ( ) ( ) Biomial Coefficiet C!! ( )! Symmety Idetity Khayyam-Pascal Idetity Biomial Theoem ( y) C y 0 0

More information

The Divergence Theorem

The Divergence Theorem 13.8 The ivegence Theoem Back in 13.5 we ewote Geen s Theoem in vecto fom as C F n ds= div F x, y da ( ) whee C is the positively-oiented bounday cuve of the plane egion (in the xy-plane). Notice this

More information

(n 1)n(n + 1)(n + 2) + 1 = (n 1)(n + 2)n(n + 1) + 1 = ( (n 2 + n 1) 1 )( (n 2 + n 1) + 1 ) + 1 = (n 2 + n 1) 2.

(n 1)n(n + 1)(n + 2) + 1 = (n 1)(n + 2)n(n + 1) + 1 = ( (n 2 + n 1) 1 )( (n 2 + n 1) + 1 ) + 1 = (n 2 + n 1) 2. Paabola Volume 5, Issue (017) Solutions 151 1540 Q151 Take any fou consecutive whole numbes, multiply them togethe and add 1. Make a conjectue and pove it! The esulting numbe can, fo instance, be expessed

More information

B da = 0. Q E da = ε. E da = E dv

B da = 0. Q E da = ε. E da = E dv lectomagnetic Theo Pof Ruiz, UNC Asheville, doctophs on YouTube Chapte Notes The Maxwell quations in Diffeential Fom 1 The Maxwell quations in Diffeential Fom We will now tansfom the integal fom of the

More information

AIEEE 2004 (MATHEMATICS)

AIEEE 2004 (MATHEMATICS) AIEEE 004 (MATHEMATICS) Impotat Istuctios: i) The test is of hous duatio. ii) The test cosists of 75 questios. iii) The maimum maks ae 5. iv) Fo each coect aswe you will get maks ad fo a wog aswe you will

More information

Using Difference Equations to Generalize Results for Periodic Nested Radicals

Using Difference Equations to Generalize Results for Periodic Nested Radicals Usig Diffeece Equatios to Geealize Results fo Peiodic Nested Radicals Chis Lyd Uivesity of Rhode Islad, Depatmet of Mathematics South Kigsto, Rhode Islad 2 2 2 2 2 2 2 π = + + +... Vieta (593) 2 2 2 =

More information

Module 05: Gauss s s Law a

Module 05: Gauss s s Law a Module 05: Gauss s s Law a 1 Gauss s Law The fist Maxwell Equation! And a vey useful computational technique to find the electic field E when the souce has enough symmety. 2 Gauss s Law The Idea The total

More information

Problem Session (3) for Chapter 4 Signal Modeling

Problem Session (3) for Chapter 4 Signal Modeling Pobm Sssio fo Cht Sig Modig Soutios to Pobms....5. d... Fid th Pdé oimtio of scod-od to sig tht is giv by [... ] T i.. d so o. I oth wods usig oimtio of th fom b b b H fid th cofficits b b b d. Soutio

More information

Physics 2212 GH Quiz #2 Solutions Spring 2016

Physics 2212 GH Quiz #2 Solutions Spring 2016 Physics 2212 GH Quiz #2 Solutions Sping 216 I. 17 points) Thee point chages, each caying a chage Q = +6. nc, ae placed on an equilateal tiangle of side length = 3. mm. An additional point chage, caying

More information

Appendix A. Appendices. A.1 ɛ ijk and cross products. Vector Operations: δ ij and ɛ ijk

Appendix A. Appendices. A.1 ɛ ijk and cross products. Vector Operations: δ ij and ɛ ijk Appendix A Appendices A1 ɛ and coss poducts A11 Vecto Opeations: δ ij and ɛ These ae some notes on the use of the antisymmetic symbol ɛ fo expessing coss poducts This is an extemely poweful tool fo manipulating

More information

, the tangent line is an approximation of the curve (and easier to deal with than the curve).

, the tangent line is an approximation of the curve (and easier to deal with than the curve). 114 Tangent Planes and Linea Appoimations Back in-dimensions, what was the equation of the tangent line of f ( ) at point (, ) f ( )? (, ) ( )( ) = f Linea Appoimation (Tangent Line Appoimation) of f at

More information

F 12. = G m m 1 2 F 21 = F 12. = G m 1m 2. Review. Physics 201, Lecture 22. Newton s Law Of Universal Gravitation

F 12. = G m m 1 2 F 21 = F 12. = G m 1m 2. Review. Physics 201, Lecture 22. Newton s Law Of Universal Gravitation Physics 201, Lectue 22 Review Today s Topics n Univesal Gavitation (Chapte 13.1-13.3) n Newton s Law of Univesal Gavitation n Popeties of Gavitational Foce n Planet Obits; Keple s Laws by Newton s Law

More information

Hopefully Helpful Hints for Gauss s Law

Hopefully Helpful Hints for Gauss s Law Hopefully Helpful Hints fo Gauss s Law As befoe, thee ae things you need to know about Gauss s Law. In no paticula ode, they ae: a.) In the context of Gauss s Law, at a diffeential level, the electic flux

More information

3.6 Applied Optimization

3.6 Applied Optimization .6 Applied Optimization Section.6 Notes Page In this section we will be looking at wod poblems whee it asks us to maimize o minimize something. Fo all the poblems in this section you will be taking the

More information

Lecture 2-5. Optical Fiber

Lecture 2-5. Optical Fiber We use qualitative desciptio athe tha quatitative desciptio. What is fibe? - Best aswe is cicula ad vey log waveguide. - Geeal ideas fo guidig i a plaa waveguide is exteded to a cylidical waveguide - Fibe

More information

Viewing in 3D. Viewing in 3D. Planar Geometric Projections. Taxonomy of Projections. How to specify which part of the 3D world is to be viewed?

Viewing in 3D. Viewing in 3D. Planar Geometric Projections. Taxonomy of Projections. How to specify which part of the 3D world is to be viewed? Viewig i 3D Viewig i 3D How o speci which pa o he 3D wo is o e viewe? 3D viewig voume How o asom 3D wo cooiaes o D ispa cooiae? Pojecios Cocepua viewig pipeie: Xom o ee coos 3D cippig Pojec Xom o viewpo

More information

Recall from last week:

Recall from last week: Recall fom last week: Length of a cuve '( t) dt b Ac length s( t) a a Ac length paametization ( s) with '( s) 1 '( t) Unit tangent vecto T '(s) '( t) dt Cuvatue: s ds T t t t t t 3 t ds u du '( t) dt Pincipal

More information

Mapping Radius of Regular Function and Center of Convex Region. Duan Wenxi

Mapping Radius of Regular Function and Center of Convex Region. Duan Wenxi d Iteatioal Cofeece o Electical Compute Egieeig ad Electoics (ICECEE 5 Mappig adius of egula Fuctio ad Cete of Covex egio Dua Wexi School of Applied Mathematics Beijig Nomal Uivesity Zhuhai Chia 363463@qqcom

More information

Seidel s Trapezoidal Partitioning Algorithm

Seidel s Trapezoidal Partitioning Algorithm CS68: Geometic Agoithms Handout #6 Design and Anaysis Oigina Handout #6 Stanfod Univesity Tuesday, 5 Febuay 99 Oigina Lectue #7: 30 Januay 99 Topics: Seide s Tapezoida Patitioning Agoithm Scibe: Michae

More information

SVD ( ) Linear Algebra for. A bit of repetition. Lecture: 8. Let s try the factorization. Is there a generalization? = Q2Λ2Q (spectral theorem!

SVD ( ) Linear Algebra for. A bit of repetition. Lecture: 8. Let s try the factorization. Is there a generalization? = Q2Λ2Q (spectral theorem! Liea Algeba fo Wieless Commuicatios Lectue: 8 Sigula Value Decompositio SVD Ove Edfos Depatmet of Electical ad Ifomatio echology Lud Uivesity it 00-04-06 Ove Edfos A bit of epetitio A vey useful matix

More information

KEY. Math 334 Midterm II Fall 2007 section 004 Instructor: Scott Glasgow

KEY. Math 334 Midterm II Fall 2007 section 004 Instructor: Scott Glasgow KEY Math 334 Midtem II Fall 7 sectio 4 Istucto: Scott Glasgow Please do NOT wite o this exam. No cedit will be give fo such wok. Rathe wite i a blue book, o o you ow pape, pefeably egieeig pape. Wite you

More information

Ray and Gaussian beamlet tracing

Ray and Gaussian beamlet tracing Ra tacig EE 66 Numeical Metho i Photoics Ra ad Gaussia beamlet tacig Goals/outlie Udestad the basis of a tacig (the most commo optical modelig tool b fa) Use fiite diffeeces to popagate paaial as i gadiet

More information

Masses and orbits of minor planets with the GAIA mission

Masses and orbits of minor planets with the GAIA mission asses ad obits of io laets with the GAIA issio Sege ouet Suevisos : F.igad D.Hestoffe PLAN Itoductio Puose of the PhD Iotace of asses The diffeet ethods to estiate these asses Descitio of close aoach Diffeet

More information

Math 7409 Homework 2 Fall from which we can calculate the cycle index of the action of S 5 on pairs of vertices as

Math 7409 Homework 2 Fall from which we can calculate the cycle index of the action of S 5 on pairs of vertices as Math 7409 Hoewok 2 Fall 2010 1. Eueate the equivalece classes of siple gaphs o 5 vetices by usig the patte ivetoy as a guide. The cycle idex of S 5 actig o 5 vetices is 1 x 5 120 1 10 x 3 1 x 2 15 x 1

More information

Lecture 2: Stress. 1. Forces Surface Forces and Body Forces

Lecture 2: Stress. 1. Forces Surface Forces and Body Forces Lectue : Stess Geophysicists study pheomea such as seismicity, plate tectoics, ad the slow flow of ocks ad mieals called ceep. Oe way they study these pheomea is by ivestigatig the defomatio ad flow of

More information

PhysicsAndMathsTutor.com

PhysicsAndMathsTutor.com PhysicsAdMathsTutor.com physicsadmathstutor.com Jue 005 4. f(x) = 3e x 1 l x, x > 0. (a) Differetiate to fid f (x). (3) The curve with equatio y = f(x) has a turig poit at P. The x-coordiate of P is α.

More information

Indian Institute of Information Technology, Allahabad. End Semester Examination - Tentative Marking Scheme

Indian Institute of Information Technology, Allahabad. End Semester Examination - Tentative Marking Scheme Idia Istitute of Iformatio Techology, Allahabad Ed Semester Examiatio - Tetative Markig Scheme Course Name: Mathematics-I Course Code: SMAT3C MM: 75 Program: B.Tech st year (IT+ECE) ate of Exam:..7 ( st

More information

Topic 1: Quaternions Shadows of Shadows

Topic 1: Quaternions Shadows of Shadows Lectue Seies: The Spi of the Matte, Physics 450, Fall 00 Topic : Quateios Shadows of Shadows D. Bill Pezzaglia CSUEB Physics Updated Nov 8, 00 Idex A. Hamilto s Quateios B. Reflectios C. Rotatios D. Refeeces

More information

Construction of mixed estimation for solving the first edge problem for the equation of non-isotropic diffusion

Construction of mixed estimation for solving the first edge problem for the equation of non-isotropic diffusion ISSN: 350-038 Iteatioa Joua of AdvacedReseach i Sciece, Egieeig ad echoogy Vo. 5, Issue, Decembe 08 Costuctio of mixed estimatio fo sovig the fist edge pobem fo the equatio of o-isotopic diffusio okhi

More information

Review. Electrostatic. Dr. Ray Kwok SJSU

Review. Electrostatic. Dr. Ray Kwok SJSU Review Electostatic D. Ray Kwok SJSU Paty Balloons Coulomb s Law F e q q k 1 Coulomb foce o electical foce. (vecto) Be caeful on detemining the sign & diection. k 9 10 9 (N m / C ) k 1 4πε o k is the Coulomb

More information

2. Electrostatics. Dr. Rakhesh Singh Kshetrimayum 8/11/ Electromagnetic Field Theory by R. S. Kshetrimayum

2. Electrostatics. Dr. Rakhesh Singh Kshetrimayum 8/11/ Electromagnetic Field Theory by R. S. Kshetrimayum 2. Electostatics D. Rakhesh Singh Kshetimayum 1 2.1 Intoduction In this chapte, we will study how to find the electostatic fields fo vaious cases? fo symmetic known chage distibution fo un-symmetic known

More information

Chapter Eight Notes N P U1C8S4-6

Chapter Eight Notes N P U1C8S4-6 Chapte Eight Notes N P UC8S-6 Name Peiod Section 8.: Tigonometic Identities An identit is, b definition, an equation that is alwas tue thoughout its domain. B tue thoughout its domain, that is to sa that

More information

SOME ARITHMETIC PROPERTIES OF OVERPARTITION K -TUPLES

SOME ARITHMETIC PROPERTIES OF OVERPARTITION K -TUPLES #A17 INTEGERS 9 2009), 181-190 SOME ARITHMETIC PROPERTIES OF OVERPARTITION K -TUPLES Deick M. Keiste Depatmet of Mathematics, Pe State Uivesity, Uivesity Pak, PA 16802 dmk5075@psu.edu James A. Selles Depatmet

More information

MATH Midterm Solutions

MATH Midterm Solutions MATH 2113 - Midtem Solutios Febuay 18 1. A bag of mables cotais 4 which ae ed, 4 which ae blue ad 4 which ae gee. a How may mables must be chose fom the bag to guaatee that thee ae the same colou? We ca

More information

Finite q-identities related to well-known theorems of Euler and Gauss. Johann Cigler

Finite q-identities related to well-known theorems of Euler and Gauss. Johann Cigler Fiite -idetities elated to well-ow theoems of Eule ad Gauss Joha Cigle Faultät fü Mathemati Uivesität Wie A-9 Wie, Nodbegstaße 5 email: oha.cigle@uivie.ac.at Abstact We give geealizatios of a fiite vesio

More information

Physics 2020, Spring 2005 Lab 5 page 1 of 8. Lab 5. Magnetism

Physics 2020, Spring 2005 Lab 5 page 1 of 8. Lab 5. Magnetism Physics 2020, Sping 2005 Lab 5 page 1 of 8 Lab 5. Magnetism PART I: INTRODUCTION TO MAGNETS This week we will begin wok with magnets and the foces that they poduce. By now you ae an expet on setting up

More information

Auchmuty High School Mathematics Department Advanced Higher Notes Teacher Version

Auchmuty High School Mathematics Department Advanced Higher Notes Teacher Version The Binomial Theoem Factoials Auchmuty High School Mathematics Depatment The calculations,, 6 etc. often appea in mathematics. They ae called factoials and have been given the notation n!. e.g. 6! 6!!!!!

More information

Physics Tutorial V1 2D Vectors

Physics Tutorial V1 2D Vectors Physics Tutoial V1 2D Vectos 1 Resolving Vectos & Addition of Vectos A vecto quantity has both magnitude and diection. Thee ae two ways commonly used to mathematically descibe a vecto. y (a) The pola fom:,

More information

Chapter 5 Force and Motion

Chapter 5 Force and Motion Chapte 5 Foce and Motion In Chaptes 2 and 4 we have studied kinematics, i.e., we descibed the motion of objects using paametes such as the position vecto, velocity, and acceleation without any insights

More information

Physics 11 Chapter 4: Forces and Newton s Laws of Motion. Problem Solving

Physics 11 Chapter 4: Forces and Newton s Laws of Motion. Problem Solving Physics 11 Chapte 4: Foces and Newton s Laws of Motion Thee is nothing eithe good o bad, but thinking makes it so. William Shakespeae It s not what happens to you that detemines how fa you will go in life;

More information

Pressure in the Average-Atom Model

Pressure in the Average-Atom Model Pessue in the Aveage-Atom Moe W.. Johnson Depatment of Physics, 225 Nieuwan Science Ha Note Dame Univesity, Note Dame, IN 46556 Febuay 28, 2002 Abstact The (we-known) quantum mechanica expession fo the

More information

MATH /19: problems for supervision in week 08 SOLUTIONS

MATH /19: problems for supervision in week 08 SOLUTIONS MATH10101 2018/19: poblems fo supevisio i week 08 Q1. Let A be a set. SOLUTIONS (i Pove that the fuctio c: P(A P(A, defied by c(x A \ X, is bijective. (ii Let ow A be fiite, A. Use (i to show that fo each

More information

ADDITIONAL INTEGRAL TRANSFORMS

ADDITIONAL INTEGRAL TRANSFORMS Chapte IX he Itegal asfom Methods IX.7 Additioal Itegal asfoms August 5 7 897 IX.7 ADDIIONAL INEGRAL RANSFORMS 6.7. Solutio of 3-D Heat Equatio i Cylidical Coodiates 6.7. Melli asfom 6.7.3 Legede asfom

More information

2-D Raster Graphics. Graphics Pipeline. Conversion to. Conversion. to Pixel Values. Pixel Values

2-D Raster Graphics. Graphics Pipeline. Conversion to. Conversion. to Pixel Values. Pixel Values -D Raste Gahics Gahics Pielie Data Objects Covesio Covesio to to Piel Values Piel Values Disla Device Geometic Vecto Fields Chaacte Pojectio Illumiatio Shadig Deflect Beam Active Phosho -D Raste Gahics

More information

LOCUS OF THE CENTERS OF MEUSNIER SPHERES IN EUCLIDEAN 3-SPACE. 1. Introduction

LOCUS OF THE CENTERS OF MEUSNIER SPHERES IN EUCLIDEAN 3-SPACE. 1. Introduction LOCUS OF THE CENTERS OF MEUSNIER SPHERES IN EUCLIDEAN -SPACE Beyha UZUNOGLU, Yusuf YAYLI ad Ismail GOK Abstact I this study, we ivestigate the locus of the cetes of the Meusie sphees Just as focal cuve

More information

Rotational symmetry applied to boundary element computation for nuclear fusion plasma

Rotational symmetry applied to boundary element computation for nuclear fusion plasma Bouda Elemets ad Othe Mesh Reductio Methods XXXII 33 Rotatioal smmet applied to bouda elemet computatio fo uclea fusio plasma M. Itagaki, T. Ishimau & K. Wataabe 2 Facult of Egieeig, Hokkaido Uivesit,

More information

PHZ 3113 Fall 2017 Homework #5, Due Friday, October 13

PHZ 3113 Fall 2017 Homework #5, Due Friday, October 13 PHZ 3113 Fall 2017 Homewok #5, Due Fiday, Octobe 13 1. Genealize the poduct ule (fg) = f g +f g to wite the divegence Ö (Ù Ú) of the coss poduct of the vecto fields Ù and Ú in tems of the cul of Ù and

More information

Semiconductors materials

Semiconductors materials Semicoductos mteils Elemetl: Goup IV, Si, Ge Biy compouds: III-V (GAs,GSb, ISb, IP,...) IV-VI (PbS, PbSe, PbTe,...) II-VI (CdSe, CdTe,...) Tey d Qutey compouds: G x Al -x As, G x Al -x As y P -y III IV

More information

Internet Appendix for A Bayesian Approach to Real Options: The Case of Distinguishing Between Temporary and Permanent Shocks

Internet Appendix for A Bayesian Approach to Real Options: The Case of Distinguishing Between Temporary and Permanent Shocks Intenet Appendix fo A Bayesian Appoach to Real Options: The Case of Distinguishing Between Tempoay and Pemanent Shocks Steven R. Genadie Gaduate School of Business, Stanfod Univesity Andey Malenko Gaduate

More information

r cos, and y r sin with the origin of coordinate system located at

r cos, and y r sin with the origin of coordinate system located at Lectue 3-3 Kinematics of Rotation Duing ou peious lectues we hae consideed diffeent examples of motion in one and seeal dimensions. But in each case the moing object was consideed as a paticle-like object,

More information

PHYS 705: Classical Mechanics. Central Force Problems I

PHYS 705: Classical Mechanics. Central Force Problems I 1 PHYS 705: Cassica Mechanics Centa Foce Pobems I Two-Body Centa Foce Pobem Histoica Backgound: Kepe s Laws on ceestia bodies (~1605) - Based his 3 aws on obsevationa data fom Tycho Bahe - Fomuate his

More information

Structure and Some Geometric Properties of Nakano Difference Sequence Space

Structure and Some Geometric Properties of Nakano Difference Sequence Space Stuctue ad Soe Geoetic Poeties of Naao Diffeece Sequece Sace N Faied ad AA Baey Deatet of Matheatics, Faculty of Sciece, Ai Shas Uivesity, Caio, Egyt awad_baey@yahooco Abstact: I this ae, we exted the

More information

L8b - Laplacians in a circle

L8b - Laplacians in a circle L8b - Laplacias i a cicle Rev //04 `Give you evidece,' the Kig epeated agily, `o I'll have you executed, whethe you'e evous o ot.' `I'm a poo ma, you Majesty,' the Hatte bega, i a temblig voice, `--ad

More information

ANSWERS, HINTS & SOLUTIONS HALF COURSE TEST VII (Main)

ANSWERS, HINTS & SOLUTIONS HALF COURSE TEST VII (Main) AIITS-HT-VII-PM-JEE(Mai)-Sol./7 I JEE Advaced 06, FIITJEE Studets bag 6 i Top 00 AIR, 7 i Top 00 AIR, 8 i Top 00 AIR. Studets fom Log Tem lassoom/ Itegated School Pogam & Studets fom All Pogams have qualified

More information

Math 5C Discussion Problems 2 Selected Solutions

Math 5C Discussion Problems 2 Selected Solutions Math 5 iscussio Problems 2 elected olutios Path Idepedece. Let be the striaght-lie path i 2 from the origi to (3, ). efie f(x, y) = xye xy. (a) Evaluate f dr. olutio. (b) Evaluate olutio. (c) Evaluate

More information

PHYS 1444 Lecture #5

PHYS 1444 Lecture #5 Shot eview Chapte 24 PHYS 1444 Lectue #5 Tuesday June 19, 212 D. Andew Bandt Capacitos and Capacitance 1 Coulom s Law The Fomula QQ Q Q F 1 2 1 2 Fomula 2 2 F k A vecto quantity. Newtons Diection of electic

More information

Phys 2310 Fri. Oct. 23, 2017 Today s Topics. Begin Chapter 6: More on Geometric Optics Reading for Next Time

Phys 2310 Fri. Oct. 23, 2017 Today s Topics. Begin Chapter 6: More on Geometric Optics Reading for Next Time Py F. Oct., 7 Today Topc Beg Capte 6: Moe o Geometc Optc eadg fo Next Tme Homewok t Week HW # Homewok t week due Mo., Oct. : Capte 4: #47, 57, 59, 6, 6, 6, 6, 67, 7 Supplemetal: Tck ee ad e Sytem Pcple

More information

Taylor Transformations into G 2

Taylor Transformations into G 2 Iteatioal Mathematical Foum, 5,, o. 43, - 3 Taylo Tasfomatios ito Mulatu Lemma Savaah State Uivesity Savaah, a 344, USA Lemmam@savstate.edu Abstact. Though out this pape, we assume that

More information

Some Integral Mean Estimates for Polynomials

Some Integral Mean Estimates for Polynomials Iteatioal Mathematical Foum, Vol. 8, 23, o., 5-5 HIKARI Ltd, www.m-hikai.com Some Itegal Mea Estimates fo Polyomials Abdullah Mi, Bilal Ahmad Da ad Q. M. Dawood Depatmet of Mathematics, Uivesity of Kashmi

More information

Math III Final Exam Review. Name. Unit 1 Statistics. Definitions Population: Sample: Statistics: Parameter: Methods for Collecting Data Survey:

Math III Final Exam Review. Name. Unit 1 Statistics. Definitions Population: Sample: Statistics: Parameter: Methods for Collecting Data Survey: Math III Fial Exam Review Name Uit Statistics Defiitios Populatio: Sample: Statistics: Paamete: Methods fo Collectig Data Suvey: Obsevatioal Study: Expeimet: Samplig Methods Radom: Statified: Systematic:

More information

PHYS 1441 Section 002. Lecture #3

PHYS 1441 Section 002. Lecture #3 PHYS 1441 Section 00 Chapte 1 Lectue #3 Wednesday, Sept. 6, 017 Coulomb s Law The Electic Field & Field Lines Electic Fields and Conductos Motion of a Chaged Paticle in an Electic Field Electic Dipoles

More information

Multivector Functions

Multivector Functions I: J. Math. Aal. ad Appl., ol. 24, No. 3, c Academic Pess (968) 467 473. Multivecto Fuctios David Hestees I a pevious pape [], the fudametals of diffeetial ad itegal calculus o Euclidea -space wee expessed

More information

Application 10.5B Rectangular Membrane Vibrations

Application 10.5B Rectangular Membrane Vibrations Applicatio.5B Rectagular Membrae Vibratios Here we ivestigate the vibratios of a flexible membrae whose equilibrium positio is the rectagle x a, y b. Suppose it is released from rest with give iitial displacemet,

More information

PhysicsAndMathsTutor.com

PhysicsAndMathsTutor.com PhsicsAMthsTuto.com 6. The hpeol H hs equtio, whee e costts. The lie L hs equtio m c, whee m c e costts. Leve lk () Give tht L H meet, show tht the -cooites of the poits of itesectio e the oots of the

More information

Ch 3.4 Binomial Coefficients. Pascal's Identit y and Triangle. Chapter 3.2 & 3.4. South China University of Technology

Ch 3.4 Binomial Coefficients. Pascal's Identit y and Triangle. Chapter 3.2 & 3.4. South China University of Technology Disc ete Mathem atic Chapte 3: Coutig 3. The Pigeohole Piciple 3.4 Biomial Coefficiets D Patic Cha School of Compute Sciece ad Egieeig South Chia Uivesity of Techology Pigeohole Piciple Suppose that a

More information

Fluid flow in curved geometries: Mathematical Modeling and Applications

Fluid flow in curved geometries: Mathematical Modeling and Applications Fluid flow in cuved geometies: Mathematical Modeling and Applications D. Muhammad Sajid Theoetical Plasma Physics Division PINSTECH, P.O. Niloe, PAEC, Islamabad Mach 01-06, 010 Islamabad, Paistan Pesentation

More information

Using Counting Techniques to Determine Probabilities

Using Counting Techniques to Determine Probabilities Kowledge ticle: obability ad Statistics Usig outig Techiques to Detemie obabilities Tee Diagams ad the Fudametal outig iciple impotat aspect of pobability theoy is the ability to detemie the total umbe

More information

Subject : MATHEMATICS

Subject : MATHEMATICS CCE RR 560 00 KARNATAKA SECONDARY EDUCATION EXAMINATION BOARD, MALLESWARAM, BANGALE 560 00 05 S. S. L. C. EXAMINATION, JUNE, 05 : 5. 06. 05 ] MODEL ANSWERS : 8-E Date : 5. 06. 05 ] CODE NO. : 8-E Subject

More information

9.1 The multiplicative group of a finite field. Theorem 9.1. The multiplicative group F of a finite field is cyclic.

9.1 The multiplicative group of a finite field. Theorem 9.1. The multiplicative group F of a finite field is cyclic. Chapte 9 Pimitive Roots 9.1 The multiplicative goup of a finite fld Theoem 9.1. The multiplicative goup F of a finite fld is cyclic. Remak: In paticula, if p is a pime then (Z/p) is cyclic. In fact, this

More information

KCET 2015 TEST PAPER WITH ANSWER KEY (HELD ON TUESDAY 12 th MAY, 2015) MATHEMATICS ALLEN Y (0, 14) (4) 14x + 5y ³ 70 y ³ 14and x - y ³ 5 (2) (3) (4)

KCET 2015 TEST PAPER WITH ANSWER KEY (HELD ON TUESDAY 12 th MAY, 2015) MATHEMATICS ALLEN Y (0, 14) (4) 14x + 5y ³ 70 y ³ 14and x - y ³ 5 (2) (3) (4) KET 0 TEST PAPER WITH ANSWER KEY (HELD ON TUESDAY th MAY, 0). If a and b ae the oots of a + b = 0, then a +b is equal to a b () a b a b () a + b Ans:. If the nd and th tems of G.P. ae and esectively, then

More information

Faraday s Law. Faraday s Law. Faraday s Experiments. Faraday s Experiments. Magnetic Flux. Chapter 31. Law of Induction (emf( emf) Faraday s Law

Faraday s Law. Faraday s Law. Faraday s Experiments. Faraday s Experiments. Magnetic Flux. Chapter 31. Law of Induction (emf( emf) Faraday s Law Faaday s Law Faaday s Epeiments Chapte 3 Law of nduction (emf( emf) Faaday s Law Magnetic Flu Lenz s Law Geneatos nduced Electic fields Michael Faaday discoeed induction in 83 Moing the magnet induces

More information