Data Analysis II (Data Mining Techniques) WS 07/08. Contents

Größe: px
Ab Seite anzeigen:

Download "Data Analysis II (Data Mining Techniques) WS 07/08. Contents"

Transkript

1 Contents 0. Introduction 1. Instance Based Learning 2. Naïve Bayes 3. Clustering 4. Decision Trees 5. Association Rules 6. Support Vector Machines Folie 1

2 Short Introduction Assumption: quantities of interest governed by probability distributions Optimal decisions by reasoning about these probabilities together with observed data Features: each observed training example increases or decreases the probability that a hypothesis is correct classify new instances by combining predictions of multiple hypotheses weighted by their probabilities difficulty: initial knowledge of probabilities required (or estimation based on background knowledge or assumption) Intro to Naive Bayes: Folie 2

3 Thomas Bayes (c April 17,1761) was a British mathematician and Presbyterian minister, known for having formulated a special case of Bayes' theorem, which was published posthumously. Biography Thomas Bayes was born in London. He is known to have published two works in his lifetime: Divine Benevolence, or an Attempt to Prove That the Principal End of the Divine Providence and Government is the Happiness of His Creatures (1731), and An Introduction to the Doctrine of Fluxions, and a Defence of the Mathematicians Against the Objections of the Author of the Analyst (published anonymously in 1736), in which he defended the logical foundation of Isaac Newton's calculus against the criticism of George Berkeley, Author of The Analyst. It is speculated that Bayes was elected as a Fellow of the Royal Society in 1742 on the strength of the Introduction to the Doctrine of Fluxions, as he is not known to have published any other mathematical works during his lifetime. Bayes died in Tunbridge Wells, Kent. He is interred in Bunhill Fields Cemetery in London where many Nonconformists are buried. Folie 3

4 2.1. Bayes Theorem revisted Task: determine best hypothesis for a space H giving the training data D Best Hypothesis: most probable hypothesis, given data and initial knowledge about prior probability of hypothesis from H Bayes Theorem: the method to calculate the probability of a hypothesis P(h) initial probability that hypothesis h holds P(D) prior probability that D is observed P(D h) conditional probability that D is observed given h holds P(h D) probability that h holds given D is observed See for in depth a/c of Bayes prob Folie 4

5 2.1. Bayes Theorem revisted Can read theorem 2 ways: simply counting cardinality of sets and applying definition of conditional probablilities Learning rule where we learn about the state of out world from fuzzy evidence ( p(h e) < 1!!) corollary can get hold of p(e h) under laboratory conditions (preparing h) or from old examples, where p(h) may have been different Only discriminating evidence counts ( p(e h1) >> p(e h2) ) Incremental learning p(h) p(h e1) p(h e1&e2) See for in depth a/c of Bayes prob Folie 5

6 2.1. Bayes Theorem revisted Given: a set of hypothesis what is the most probable one? determine best hypothesis for a space H giving the training data D maximum a posteriory (MAP) hypothesis h MAP = argmax P(h D) h H = argmax P(D) can be dropped constant h H independent of h = argmax P(D h) P(h) h H Assumption P(h i ) = P(h j ) for all h i, h j H maximum likelihood (ML) hypothesis h ML = argmax P(D h) h H Folie 6

7 2.1. Bayes Theorem revisted Example (1) Shall I take an umbrella? A piori knowledge: Without watching the forecast p(rain) =.30 rainy days were forecast correctly in 80% of those days Sunny days were forecast correctly in 60% of those days P(rain) = 0.30 P(~rain= sunny ) = 0.70 P(forecRain rain ) = 0.80 P(forecSunny rain) = 0.20 P(forecSunny sunny) = 0.60 P(forecRain sunny) = 0.40 Question: Should I take an umbrella even upon SUNNY forecast Using equation for h MAP : P(rain forecsunny) = P(forecSunny rain) * P(rain) / P(forecSunny) =.20 *.30 / (.20 * *.70) = 12.5 % Further treatment through utility functions ODDS[forecastSunny] = P(rain forecsunny) / P(sunny forecsunny) = = P(rain)/P(sunny) * P(forecastSunny rain)/p(forecastsunny sunny) = aprioriodds * conditionalodds =.30 /.70 *.20 /.60 = 1 / 7 Folie 7

8 Folie 8

9 2.1. Bayes Theorem revisted Example (1) Shall I take an umbrella? (II) Notes: (a) ODDS are easily calculated & have an intuitive interpretation (b) A fully fledged system will add a utility calculation ( OK, chances are 1:7 against rain, but the umbrella is lightweigt and my jacket will suffer from the rain ) (c) A priori plays an important part Folie 9

10 2.1. Bayes Theorem revisted Example (2) : Medical Diagnosis Problem Has a patient cancer or not? A piori knowledge: a lab test is an imperfect indicator for the cancer: correct positve result (+) in 98% in case patient has cancer, correct negative result (-) in 97% in case patient has not 0.008% of all people have this kind of cancer P(cancer) = P( cancer) = P(+ cancer ) = 0.98 P(- cancer) = 0.02 P(+ cancer) = 0.03 P(- cancer) = 0.97 Question: Should a new patient with + test be diagnosed with cancer or not? Using equation for h MAP : P(+ cancer) P(cancer) = P(+ cancer) P( cancer) = P(cancer +) =.0078 / ( ) = 2.55 % h MAP =( cancer) Folie 10

11 2.2. Basics: Naive Bayes in Operation Folie 11

12 The core ingredients Anzahl von outlook outlook Anzahl von outlook Temp play? overcas t rainy sunny Gesamtergebni s play? cold high mild Gesamtergebnis no no yes yes Gesamtergebnis Gesamtergebnis Anzahl von outlook Windy Anzahl von outlook Humid play? false true Gesamtergebnis play? high normal Gesamtergebnis no no yes yes Gesamtergebnis Gesamtergebnis Folie 12

13 2.2. Basics: Naive Bayes in Operation Shall we expect a play on a hot sunny humid calm day and a priori is somewhat like playing?? P(play hshc) n*2/9*2/9*3/9*6/9 *.60 P(NOplay hshc) n*2/5*3/5*4/5*2/5 *.40 P(play hshc) n* 72/6561 *.60 P(NOplay hshc) n*48/625 *.40 P(play hshc) 18% P(NOplay hshc) 82 % Folie 13

14 2.2. Basics: What is so naive about Naive Bayes? need Either p (class =i x) where x is a vector of variables or through Bayes`Theorem p ( x class) Problem even with categorical variables: Combinatorical explosion Exact treatment of the game example requires joint probabilities such as p(sunny hot Humid nowind play ) there are 3 *3*2*2*2 = 72 conditional probabilites to estimate in such a trivial example If we had 5 influence variables with 4 classes each and 3 outcomes to estimate 4*4*4*4*4*3 = 3072 cond. Probs Without additional assumptions on causation we cannot get an estimate from reasonably sized databases Folie 14

15 2.2. Basics BUT let us approximate (as we have already done passim) p ( x class) = p (X 1 = x 1 & X 2 = x 2 &... X n = x n class) _ p (X 1 = x 1 class) * p (X 2 = x 2 class)*... * p (X n = x n class) = j p (X j = x j class) in the example need p (outlook= sunny//overcast//rainy class) 6 Probabilities p (temperature class) 6 Probabilities p (humidity class ) 4 Probabilities p (windy class) 4 Probabilities Probabilities If we were to add a 5th variable: Boss s Dress (shorts business) 4 add l probs scales well Folie 15

16 2.2. Basics What price to pay??? independence assumption is very often badly violated Φ suppose that we had a weather radar picture on of the official forecast with accuracy p(seedepressiononradar=ra- rain) =.85 p(seeclearskiesonradar=ra+ sunny)=.70 Naïve Bayes was ODDS[forecastSunny] = P(rain forecsunny) / P(sunny forecsunny) = = P(rain)/P(sunny) * P(forecastSunny rain)/p(forecastsunny sunny) = aprioriodds * conditionalodds =.30 /.70 *.20 /.60 = 1 / 7 And now is ODDS[forecastSunny,Ra+] = P(rain forecsunny) / P(sunny forecsunny) = = P(rain)/P(sunny) * P(forecastSunny rain)/p(forecastsunny sunny) *P(Ra+ rain)/p(ra+ sunny) = aprioriodds * conditionaloddsforecast * conditionaloddsradar =.30 /.70 *.20 /.60 *.15/.70 = oldodds *.15/.70 = % chance of rain?!?? BUT: Radar is the most important ingredient in the official forcast in reality, we learn almost nothing from the Radar online learning factor for Radar should be MUCH closer to 1 than.15/.70 =.2 Folie 16

17 2.2. Basics What price to pay??? independence assumption is very often badly violated STILL: Works well if only used for classification need only : Class c = max arg c j p (X j = x j c) BUT j p (X j = x j c) is a poor estimate of actual probabilities If we have highly correlated variables Rough & ready approach: delete highly correlated vars Filter approach Index see below Folie 17

18 Voice Recognition recognize next phoneme p( ð ) = dictionary count or p( ð last was ə ) p(lip ð) p(waveform ð) Say Æthelwulf Folie 18

19 Voice recognition Problem With 2 Indicator Bayes rule would be p(ð lip1, waveform2) = N * p( lip1, waveform2 ð) * p(ð) p(ə lip1, waveform2) = N * p( lip1, waveform2 ə) * p(ə) BUT p(lip ð) * p(waveform ð) p(lip,waveform ð) So we are using a naive independency assumption Folie 19

20 2.2. Basics Demo: Iris and Naive Bayes Folie 20

21 2.3. Advantages easily understood & easily employed readily generalised to continuous data <student contribution> missing value treatment trivial in learning cases and class prediction integration of different data sources speed one pass through the data in basic model eager learner extremely compact representation of knowledge p ( X = x i Class = c) as results 20 numbers in play-the-game example a "glimpse" of theory Folie 21

22 2.3. Advantages Diagrammtitel when to use: moderate to large training sets available attributes are conditionally independent given class p(x=x & Y=y C=c) = p(x c) * p( y c) x, y, c X Y C Example: X = tallness Y = weight C = race typical applications diagnosis text recognition on keywords CRM X C Y conditional independence <> uncond. Indep. Pygmäen 130 Tutsi Berber 120 Linear (Berber) Linear (Tutsi) 110 Linear (Pygmäen) moreexamples Folie 22

23 2.4. Explaining Away Evidence: a phenomenon of real life lassa fever Let LF be described by very clear symptoms P(fever LF) =.9 P(runnigNose LF) =.8 (a) A standard German physician & its patients P(fever NP: normalpop ) =.05 P (runnignose NP) =.10 p(lf) =.001 P(LF fever & runningnose) =N *.9 *.8 * % P(NP fever & runningnose) = N *.05 *.10 *.999 Strongly (almost proportionally) dependent on a priori Folie 23

24 2.4. Explaining Away Evidence: a phenomenon of real life lassa fever (II) Let LF be described by very clear symptoms. (b) During a (plain) cold epidemic P(fever cold) =.7 P(runningNose cold) =.8 P(COLD) =.30 P(LF fever & runningnose) =N *.9 *.8 * % P(CO fever & runningnose) =N *.7 *.8 * % P(NP fever & runningnose) = N *.05 *.10 *.699 2% Folie 24

25 2.4. Explaining Away Evidence: a phenomenon of real life lassa fever (III) Suppose we had another symptom that does not show up reliably but is seldom shown by plain cold and almost never with healthy people P(greenEars LF) =.50 P(greenEars CO) =.10 P(greenEars NP) =.01 P(LF fever & runningnose& Gn) =N *.9 *.8 *.50 * % P(CO fever & runningnose & Gn) =N *.7 *.8 *.10 * % P(NP fever & runningnose & Gn) = N *.05 *.10 *.01 * % Still LF goes UNDIAGNOSED during the epidemic NOT because of medical stupidity: 97.7% of the patients displaying all 3 symptoms mentioned ARE INDEED suffering from a cold!!! Folie 25

26 2.4. Explaining Away Evidence: a phenomenon of real life Fever Headache Arthralgias/Myalgias Retro-sternal Pain Weakness Dizziness Sore throat/pharyngitis Cough Vomiting Abdominal Pain/Tenderness Diarrhea Conjunctivitis/Sub-conjunctival Hemorrhage Chills Deafness Lymphadenopgathy Bleeding Confusion Swollen Neck or Face Percent From From: Folie 26

27 2.5. Extensions 1. Laplace Correction p(x 1 =a Class=c) = (N(a & c) + 1) / (N(c) + m) m = Number of classes or more general: p(x 1 =a Class=c) = (N(a & c) + λ*p c apriori ) / (N(c) + λ) λ = smoothing parameter ( feign λ additional drawings with a-priori class membership of p c apriori e.g. = 1 / m ) useful if Zero counts occur in learning data P (white raven) observed = 0 because <1 Albinos P(raven white) = 0 a white bird ex post is NEVER classified as raven even if all other traits (beak, size, voice ) fit perfectly! «NBEM models converge to much more consistent results when using this arithmetic smoothing procedure.» maybe also advisable with a prioris Folie 27

28 P(E if H) P(Hapriori) P(H apres E) Laplace: additive Verknüpfung der Elemente Folie 28

29 2.5. Extensions Pierre-Simon, Marquis de Laplace (March 23, 1749 March 5, 1827) was a French mathematician and astronomer who put the final capstone on mathematical astronomy by summarizing and extending the work of his predecessors in his five volume Mécanique Céleste (Celestial Mechanics) ( ). Quotations * What we know is not much. What we do not know is immense. * "It is therefore obvious that..." (frequently used in the Celestial Mechanics when he had proved something and mislaid the proof, or found it clumsy. Notorious as a signal for something true, but hard to prove.) It does appear that Laplace was not modest about his abilities and achievements, and he probably failed to recognise the effect of his attitude on his colleagues. Lexell visited the Académie des Sciences in Paris in and reported that Laplace let it be known widely that he considered himself the best mathematician in France. The effect on his colleagues would have been only mildly eased by the fact that Laplace was right! Folie 29

30 2.5. Extensions 2. Treatment of interdependencies and better probability estimates 2.1 delete highly correlated 2.2 wrapper 2.3 index / weighted sum 2.4 Tree Augmented Networks (TAN) super parent (E. Keogh / M. Pazzani 1999) tree stump ( Zhang/Ling 2001): Folie 30

31 2.5. Extensions 3. Probability Networks in Operation Example GENIE by Univ of Pittsburg: Link P(D A, B, C, E, F) P(F A, B, C, D, E) forward use: given all p(x Y) and a prioris for root nodes: calculate a posterioris backward use: given priors and some evidence: calculate new a posterioris Folie 31

32 bermuda-online.org/shorts.htm Folie 32

33 2.5. Extensions 3. Probability Networks in Operation Key Inputs and Outputs Stochastic Node p(ownstate=j {setofallstatesofincomingnodes}) J*I 1 *I 2 Matrix Further components Utililty calculationfor Node i Ui = f (StateIncomingNodeA,B, ) Decision Node Utility Calculations will be one per state_of_the_node weather mood clothing ambience happiness p(shivering rain,shorts)=.97 p(sweating hot,shorts)=.50 p(sweating hot,oilskin)=.99 U(depressed,shivering) = 0 U(enthusisatic,sweating) = 10 a prioris & a posterioris for weather-states Network should update my beliefs Nst for clothing: I decide on state Interest is in a table of expected utilities Clothing Shorts Khakis Oilskin E(U happ ) Folie 33

34 We have added a weather mood arc This guy wearing shorts and Shivering was nevertheless enthusisatic What can we lean about the the weather But he tells us that he was enthusiatic because he made a lot of money at the Stock exchange (odr fell in love) No backpropagation of belief (genie uses the control value concept) Folie 34

35 Further Reading Mitchell, M.: Machine Learning. McGraw Hill, 1997, Chapter 6 Jensen, Finn V., An introduction to Bayesian networks, London, for very nice and gentle intro to more sophisticated methods for more in-depth theory Domingos, Pazzani: Folie 35

36 Treatment continuous Vars Under the assumption of Normality in each class p( Temp (x-ε,x+ ε ) class) ~ ε * 1/σ c *exp( -(x-μ c ) / σ c )²) Using the independence assumption again, each variable has ist own Normal distribution no yes Standardabweichung (Stichprobe) von tempnum Mittelwert von tempnum Standardabweichung (Stichprobe) von tempnum Mittelwert von tempnum Gesamt: Standardabweichung (Stichprobe) von tempnum Gesamt: Mittelwert von tempnum Folie 36

37 Treatment continuous Vars Shall we expect a play on a 73.5 F +- ε sunny humid calm day and a priori is somewhat like playing?? P(play hshc) n* ε * [ 1 / 6.16 *exp(- ( ) / 6.16 )² ] *3/9*6/9 *.60 P(NOplay hshc) n* ε * [ 1 / 7.89 *exp(- ( ) / 7.89 )² ] *3/5*4/5*2/5 *.40 P(play hshc) n* ε *.0215 P(NOplay hshc) n* ε *.0273 P(play hshc) 44% P(NOplay hshc) 56 % Note: the ε cancels on normalization (quelle fortune!) Folie 37

38 From WEKA Folie 38

39 Decision-analytic decision support systems The principles of decision-analytic decision support, implemented in GeNIe and SMILE canbeappliedin practical decision support systems (DSSs). In fact, Decision Systems Laboratory has developed and is currently developing several such probabilistic DSSs in which GeNIe plays the role of a developer's environment and SMILE plays the role of the reasoning engine. A decision support system based on SMILE can be equipped with a dedicated user interface. Probabilistic DSSs, applicable to problems involving classification, prediction, and diagnosis, are a new generation of systems that are capable of modeling any real-world decision problem using theoretically sound and practically invaluable methods of probability theory and decision theory. Based on graphical representation of the problem structure, these systems allow for combining expert opinions with frequency data, gather, manage, and process information to arrive at intelligent solutions. Probabilistic DSSs are based on a philosophically different principle than rule-based expert systems. While the latter attempt to model the reasoning of a human expert, the former use an axiomatic theory to perform computation. The soundness of probability theory provides a clear advantage over rule-based systems that usually represent uncertainty in an ad-hoc manner, such as using certainty factors, leading to underresponsiveness or over-responsiveness to evidence and possibly incorrect conclusions. Probabilistic DSSs are applicable in many domains, among others in medicine (e.g., diagnosis, therapy planning), banking (e.g., credit authorization, fraud detection), insurance (e.g., risk analysis, fraud detection), military (e.g., target detection and prioritization, battle damage assessment, campaign planning), engineering (e.g., process control, machine and process diagnosis), and business (e.g., strategic planning, risk analysis, market analysis). An example DSS developed using GeNIe and SMILE is the medical diagnostic system Hepar II (Onisko et al. 1999, 2000). The system aids physicians in diagnosis of liver disorders. The structure of the model, currently consisting of almost 100 variables, has been elicited from physician experts, while its numerical parameters have been learned from a database of patient cases. The Hepar II system is equipped with a simple dedicated user interface that allows for entering various observations such as symptoms and results of medical tests and displays the probability distribution over various possible disorders in the order of most to least likely. The system is currently used both as a diagnostic aid and a training tool. Folie 39

40 Folie 40

Bayesian Networks. Syntax Semantics Parametrized Distributions Inference in Bayesian Networks. Exact Inference. Approximate Inference

Bayesian Networks. Syntax Semantics Parametrized Distributions Inference in Bayesian Networks. Exact Inference. Approximate Inference Syntax Semantics Parametrized Distributions Inference in Exact Inference Approximate Inference enumeration variable elimination stochastic simulation Markov Chain Monte Carlo (MCMC) 1 Includes many slides

Mehr

Englisch-Grundwortschatz

Englisch-Grundwortschatz Englisch-Grundwortschatz Die 100 am häufigsten verwendeten Wörter also auch so so in in even sogar on an / bei / in like wie / mögen their with but first only and time find you get more its those because

Mehr

Die Bedeutung neurowissenschaftlicher Erkenntnisse für die Werbung (German Edition)

Die Bedeutung neurowissenschaftlicher Erkenntnisse für die Werbung (German Edition) Die Bedeutung neurowissenschaftlicher Erkenntnisse für die Werbung (German Edition) Lisa Johann Click here if your download doesn"t start automatically Download and Read Free Online Die Bedeutung neurowissenschaftlicher

Mehr

Unit 1. Motivation and Basics of Classical Logic. Fuzzy Logic I 6

Unit 1. Motivation and Basics of Classical Logic. Fuzzy Logic I 6 Unit 1 Motivation and Basics of Classical Logic Fuzzy Logic I 6 Motivation In our everyday life, we use vague, qualitative, imprecise linguistic terms like small, hot, around two o clock Even very complex

Mehr

Magic Figures. We note that in the example magic square the numbers 1 9 are used. All three rows (columns) have equal sum, called the magic number.

Magic Figures. We note that in the example magic square the numbers 1 9 are used. All three rows (columns) have equal sum, called the magic number. Magic Figures Introduction: This lesson builds on ideas from Magic Squares. Students are introduced to a wider collection of Magic Figures and consider constraints on the Magic Number associated with such

Mehr

Was heißt Denken?: Vorlesung Wintersemester 1951/52. [Was bedeutet das alles?] (Reclams Universal-Bibliothek) (German Edition)

Was heißt Denken?: Vorlesung Wintersemester 1951/52. [Was bedeutet das alles?] (Reclams Universal-Bibliothek) (German Edition) Was heißt Denken?: Vorlesung Wintersemester 1951/52. [Was bedeutet das alles?] (Reclams Universal-Bibliothek) (German Edition) Martin Heidegger Click here if your download doesn"t start automatically Was

Mehr

Handbuch der therapeutischen Seelsorge: Die Seelsorge-Praxis / Gesprächsführung in der Seelsorge (German Edition)

Handbuch der therapeutischen Seelsorge: Die Seelsorge-Praxis / Gesprächsführung in der Seelsorge (German Edition) Handbuch der therapeutischen Seelsorge: Die Seelsorge-Praxis / Gesprächsführung in der Seelsorge (German Edition) Reinhold Ruthe Click here if your download doesn"t start automatically Handbuch der therapeutischen

Mehr

Level 2 German, 2015

Level 2 German, 2015 91126 911260 2SUPERVISOR S Level 2 German, 2015 91126 Demonstrate understanding of a variety of written and / or visual German text(s) on familiar matters 2.00 p.m. Friday 4 December 2015 Credits: Five

Mehr

Introduction FEM, 1D-Example

Introduction FEM, 1D-Example Introduction FEM, 1D-Example home/lehre/vl-mhs-1-e/folien/vorlesung/3_fem_intro/cover_sheet.tex page 1 of 25. p.1/25 Table of contents 1D Example - Finite Element Method 1. 1D Setup Geometry 2. Governing

Mehr

A Classification of Partial Boolean Clones

A Classification of Partial Boolean Clones A Classification of Partial Boolean Clones DIETLINDE LAU, KARSTEN SCHÖLZEL Universität Rostock, Institut für Mathematik 25th May 2010 c 2010 UNIVERSITÄT ROSTOCK MATHEMATISCH-NATURWISSENSCHAFTLICHE FAKULTÄT,

Mehr

Im Fluss der Zeit: Gedanken beim Älterwerden (HERDER spektrum) (German Edition)

Im Fluss der Zeit: Gedanken beim Älterwerden (HERDER spektrum) (German Edition) Im Fluss der Zeit: Gedanken beim Älterwerden (HERDER spektrum) (German Edition) Ulrich Schaffer Click here if your download doesn"t start automatically Im Fluss der Zeit: Gedanken beim Älterwerden (HERDER

Mehr

Die "Badstuben" im Fuggerhaus zu Augsburg

Die Badstuben im Fuggerhaus zu Augsburg Die "Badstuben" im Fuggerhaus zu Augsburg Jürgen Pursche, Eberhard Wendler Bernt von Hagen Click here if your download doesn"t start automatically Die "Badstuben" im Fuggerhaus zu Augsburg Jürgen Pursche,

Mehr

Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten. Click here if your download doesn"t start automatically

Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten. Click here if your download doesnt start automatically Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten Click here if your download doesn"t start automatically Ein Stern in dunkler Nacht Die schoensten Weihnachtsgeschichten Ein Stern in dunkler

Mehr

Martin Luther. Click here if your download doesn"t start automatically

Martin Luther. Click here if your download doesnt start automatically Die schönsten Kirchenlieder von Luther (Vollständige Ausgabe): Gesammelte Gedichte: Ach Gott, vom Himmel sieh darein + Nun bitten wir den Heiligen Geist... der Unweisen Mund... (German Edition) Martin

Mehr

Tube Analyzer LogViewer 2.3

Tube Analyzer LogViewer 2.3 Tube Analyzer LogViewer 2.3 User Manual Stand: 25.9.2015 Seite 1 von 11 Name Company Date Designed by WKS 28.02.2013 1 st Checker 2 nd Checker Version history Version Author Changes Date 1.0 Created 19.06.2015

Mehr

Wie man heute die Liebe fürs Leben findet

Wie man heute die Liebe fürs Leben findet Wie man heute die Liebe fürs Leben findet Sherrie Schneider Ellen Fein Click here if your download doesn"t start automatically Wie man heute die Liebe fürs Leben findet Sherrie Schneider Ellen Fein Wie

Mehr

Level 2 German, 2013

Level 2 German, 2013 91126 911260 2SUPERVISOR S Level 2 German, 2013 91126 Demonstrate understanding of a variety of written and / or visual German text(s) on familiar matters 9.30 am Monday 11 November 2013 Credits: Five

Mehr

Bayesian Networks. Syntax Semantics Parametrized Distributions Inference in Bayesian Networks. Exact Inference. Approximate Inference

Bayesian Networks. Syntax Semantics Parametrized Distributions Inference in Bayesian Networks. Exact Inference. Approximate Inference Syntax Semantics Parametrized Distributions Inference in Exact Inference Approximate Inference enumeration variable elimination stochastic simulation Markov Chain Monte Carlo (MCMC) 1 Includes many slides

Mehr

Mercedes OM 636: Handbuch und Ersatzteilkatalog (German Edition)

Mercedes OM 636: Handbuch und Ersatzteilkatalog (German Edition) Mercedes OM 636: Handbuch und Ersatzteilkatalog (German Edition) Mercedes-Benz Click here if your download doesn"t start automatically Mercedes OM 636: Handbuch und Ersatzteilkatalog (German Edition) Mercedes-Benz

Mehr

DIBELS TM. German Translations of Administration Directions

DIBELS TM. German Translations of Administration Directions DIBELS TM German Translations of Administration Directions Note: These translations can be used with students having limited English proficiency and who would be able to understand the DIBELS tasks better

Mehr

PONS DIE DREI??? FRAGEZEICHEN, ARCTIC ADVENTURE: ENGLISCH LERNEN MIT JUSTUS, PETER UND BOB

PONS DIE DREI??? FRAGEZEICHEN, ARCTIC ADVENTURE: ENGLISCH LERNEN MIT JUSTUS, PETER UND BOB Read Online and Download Ebook PONS DIE DREI??? FRAGEZEICHEN, ARCTIC ADVENTURE: ENGLISCH LERNEN MIT JUSTUS, PETER UND BOB DOWNLOAD EBOOK : PONS DIE DREI??? FRAGEZEICHEN, ARCTIC ADVENTURE: Click link bellow

Mehr

Finite Difference Method (FDM)

Finite Difference Method (FDM) Finite Difference Method (FDM) home/lehre/vl-mhs-1-e/folien/vorlesung/2a_fdm/cover_sheet.tex page 1 of 15. p.1/15 Table of contents 1. Problem 2. Governing Equation 3. Finite Difference-Approximation 4.

Mehr

Level 2 German, 2016

Level 2 German, 2016 91126 911260 2SUPERVISOR S Level 2 German, 2016 91126 Demonstrate understanding of a variety of written and / or visual German texts on familiar matters 2.00 p.m. Tuesday 29 November 2016 Credits: Five

Mehr

Killy Literaturlexikon: Autoren Und Werke Des Deutschsprachigen Kulturraumes 2., Vollstandig Uberarbeitete Auflage (German Edition)

Killy Literaturlexikon: Autoren Und Werke Des Deutschsprachigen Kulturraumes 2., Vollstandig Uberarbeitete Auflage (German Edition) Killy Literaturlexikon: Autoren Und Werke Des Deutschsprachigen Kulturraumes 2., Vollstandig Uberarbeitete Auflage (German Edition) Walther Killy Click here if your download doesn"t start automatically

Mehr

Big Data Analytics. Fifth Munich Data Protection Day, March 23, Dr. Stefan Krätschmer, Data Privacy Officer, Europe, IBM

Big Data Analytics. Fifth Munich Data Protection Day, March 23, Dr. Stefan Krätschmer, Data Privacy Officer, Europe, IBM Big Data Analytics Fifth Munich Data Protection Day, March 23, 2017 C Dr. Stefan Krätschmer, Data Privacy Officer, Europe, IBM Big Data Use Cases Customer focused - Targeted advertising / banners - Analysis

Mehr

Level 1 German, 2016

Level 1 German, 2016 90886 908860 1SUPERVISOR S Level 1 German, 2016 90886 Demonstrate understanding of a variety of German texts on areas of most immediate relevance 2.00 p.m. Wednesday 23 November 2016 Credits: Five Achievement

Mehr

Benjamin Whorf, Die Sumerer Und Der Einfluss Der Sprache Auf Das Denken (Philippika) (German Edition)

Benjamin Whorf, Die Sumerer Und Der Einfluss Der Sprache Auf Das Denken (Philippika) (German Edition) Benjamin Whorf, Die Sumerer Und Der Einfluss Der Sprache Auf Das Denken (Philippika) (German Edition) Sebastian Fink Click here if your download doesn"t start automatically Benjamin Whorf, Die Sumerer

Mehr

"Die Brücke" von Franz Kafka. Eine Interpretation (German Edition)

Die Brücke von Franz Kafka. Eine Interpretation (German Edition) "Die Brücke" von Franz Kafka. Eine Interpretation (German Edition) Johanna Uminski Click here if your download doesn"t start automatically "Die Brücke" von Franz Kafka. Eine Interpretation (German Edition)

Mehr

Funktion der Mindestreserve im Bezug auf die Schlüsselzinssätze der EZB (German Edition)

Funktion der Mindestreserve im Bezug auf die Schlüsselzinssätze der EZB (German Edition) Funktion der Mindestreserve im Bezug auf die Schlüsselzinssätze der EZB (German Edition) Philipp Heckele Click here if your download doesn"t start automatically Download and Read Free Online Funktion

Mehr

Fachübersetzen - Ein Lehrbuch für Theorie und Praxis

Fachübersetzen - Ein Lehrbuch für Theorie und Praxis Fachübersetzen - Ein Lehrbuch für Theorie und Praxis Radegundis Stolze Click here if your download doesn"t start automatically Fachübersetzen - Ein Lehrbuch für Theorie und Praxis Radegundis Stolze Fachübersetzen

Mehr

ZWISCHEN TRADITION UND REBELLION - FRAUENBILDER IM AKTUELLEN BOLLYWOODFILM (GERMAN EDITION) BY CHRISTINE STöCKEL

ZWISCHEN TRADITION UND REBELLION - FRAUENBILDER IM AKTUELLEN BOLLYWOODFILM (GERMAN EDITION) BY CHRISTINE STöCKEL Read Online and Download Ebook ZWISCHEN TRADITION UND REBELLION - FRAUENBILDER IM AKTUELLEN BOLLYWOODFILM (GERMAN EDITION) BY CHRISTINE STöCKEL DOWNLOAD EBOOK : ZWISCHEN TRADITION UND REBELLION - FRAUENBILDER

Mehr

Level 1 German, 2014

Level 1 German, 2014 90886 908860 1SUPERVISOR S Level 1 German, 2014 90886 Demonstrate understanding of a variety of German texts on areas of most immediate relevance 9.30 am Wednesday 26 November 2014 Credits: Five Achievement

Mehr

Lehrstuhl für Allgemeine BWL Strategisches und Internationales Management Prof. Dr. Mike Geppert Carl-Zeiß-Str. 3 07743 Jena

Lehrstuhl für Allgemeine BWL Strategisches und Internationales Management Prof. Dr. Mike Geppert Carl-Zeiß-Str. 3 07743 Jena Lehrstuhl für Allgemeine BWL Strategisches und Internationales Management Prof. Dr. Mike Geppert Carl-Zeiß-Str. 3 07743 Jena http://www.im.uni-jena.de Contents I. Learning Objectives II. III. IV. Recap

Mehr

Statistics, Data Analysis, and Simulation SS 2015

Statistics, Data Analysis, and Simulation SS 2015 Mainz, June 11, 2015 Statistics, Data Analysis, and Simulation SS 2015 08.128.730 Statistik, Datenanalyse und Simulation Dr. Michael O. Distler Dr. Michael O. Distler

Mehr

There are 10 weeks this summer vacation the weeks beginning: June 23, June 30, July 7, July 14, July 21, Jul 28, Aug 4, Aug 11, Aug 18, Aug 25

There are 10 weeks this summer vacation the weeks beginning: June 23, June 30, July 7, July 14, July 21, Jul 28, Aug 4, Aug 11, Aug 18, Aug 25 Name: AP Deutsch Sommerpaket 2014 The AP German exam is designed to test your language proficiency your ability to use the German language to speak, listen, read and write. All the grammar concepts and

Mehr

Kursbuch Naturheilverfahren: Curriculum der Weiterbildung zur Erlangung der Zusatzbezeichnung Naturheilverfahren (German Edition)

Kursbuch Naturheilverfahren: Curriculum der Weiterbildung zur Erlangung der Zusatzbezeichnung Naturheilverfahren (German Edition) Kursbuch Naturheilverfahren: Curriculum der Weiterbildung zur Erlangung der Zusatzbezeichnung Naturheilverfahren (German Edition) Click here if your download doesn"t start automatically Kursbuch Naturheilverfahren:

Mehr

Mitglied der Leibniz-Gemeinschaft

Mitglied der Leibniz-Gemeinschaft Methods of research into dictionary use: online questionnaires Annette Klosa (Institut für Deutsche Sprache, Mannheim) 5. Arbeitstreffen Netzwerk Internetlexikografie, Leiden, 25./26. März 2013 Content

Mehr

42 Zitate großer Philosophen: Über das Leben, das Universum und den ganzen Rest (German Edition)

42 Zitate großer Philosophen: Über das Leben, das Universum und den ganzen Rest (German Edition) 42 Zitate großer Philosophen: Über das Leben, das Universum und den ganzen Rest (German Edition) Click here if your download doesn"t start automatically 42 Zitate großer Philosophen: Über das Leben, das

Mehr

Security of Pensions

Security of Pensions Security of Pensions by Prof. Dr. Heinz-Dietrich Steinmeyer - Pensions are of essential importance for people and security of pensions important for them for a number of reasons - People depend on pensions

Mehr

Sagen und Geschichten aus dem oberen Flöhatal im Erzgebirge: Pfaffroda - Neuhausen - Olbernhau - Seiffen (German Edition)

Sagen und Geschichten aus dem oberen Flöhatal im Erzgebirge: Pfaffroda - Neuhausen - Olbernhau - Seiffen (German Edition) Sagen und Geschichten aus dem oberen Flöhatal im Erzgebirge: Pfaffroda - Neuhausen - Olbernhau - Seiffen (German Edition) Dr. Frank Löser Click here if your download doesn"t start automatically Sagen und

Mehr

Schöpfung als Thema des Religionsunterrichts in der Sekundarstufe II (German Edition)

Schöpfung als Thema des Religionsunterrichts in der Sekundarstufe II (German Edition) Schöpfung als Thema des Religionsunterrichts in der Sekundarstufe II (German Edition) Juliane Timmroth Click here if your download doesn"t start automatically Schöpfung als Thema des Religionsunterrichts

Mehr

Introduction FEM, 1D-Example

Introduction FEM, 1D-Example Introduction FEM, D-Example /home/lehre/vl-mhs-/inhalt/cover_sheet.tex. p./22 Table of contents D Example - Finite Element Method. D Setup Geometry 2. Governing equation 3. General Derivation of Finite

Mehr

Climate change and availability of water resources for Lima

Climate change and availability of water resources for Lima Climate change and availability of water resources for Lima András Bárdossy bardossy@iws.uni-stuttgart.de Lima Marzo 12. 2009 1 Engineers and the future Knowledge about Past Design for Future Lima Marzo

Mehr

DAS ERSTE MAL UND IMMER WIEDER. ERWEITERTE SONDERAUSGABE BY LISA MOOS

DAS ERSTE MAL UND IMMER WIEDER. ERWEITERTE SONDERAUSGABE BY LISA MOOS Read Online and Download Ebook DAS ERSTE MAL UND IMMER WIEDER. ERWEITERTE SONDERAUSGABE BY LISA MOOS DOWNLOAD EBOOK : DAS ERSTE MAL UND IMMER WIEDER. ERWEITERTE Click link bellow and free register to download

Mehr

Aus FanLiebe zu Tokio Hotel: von Fans fã¼r Fans und ihre Band

Aus FanLiebe zu Tokio Hotel: von Fans fã¼r Fans und ihre Band Aus FanLiebe zu Tokio Hotel: von Fans fã¼r Fans und ihre Band Click here if your download doesn"t start automatically Aus FanLiebe zu Tokio Hotel: von Fans fã¼r Fans und ihre Band Aus FanLiebe zu Tokio

Mehr

Exercise (Part II) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1

Exercise (Part II) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1 Exercise (Part II) Notes: The exercise is based on Microsoft Dynamics CRM Online. For all screenshots: Copyright Microsoft Corporation. The sign ## is you personal number to be used in all exercises. All

Mehr

Mock Exam Behavioral Finance

Mock Exam Behavioral Finance Mock Exam Behavioral Finance For the following 4 questions you have 60 minutes. You may receive up to 60 points, i.e. on average you should spend about 1 minute per point. Please note: You may use a pocket

Mehr

Wer bin ich - und wenn ja wie viele?: Eine philosophische Reise. Click here if your download doesn"t start automatically

Wer bin ich - und wenn ja wie viele?: Eine philosophische Reise. Click here if your download doesnt start automatically Wer bin ich - und wenn ja wie viele?: Eine philosophische Reise Click here if your download doesn"t start automatically Wer bin ich - und wenn ja wie viele?: Eine philosophische Reise Wer bin ich - und

Mehr

Rev. Proc Information

Rev. Proc Information Rev. Proc. 2006-32 Information 2006, CPAs 1 Table 1-Total loss of the home Table 2- Near total loss is water to the roofline. Completely gut the home from floor to rafters - wiring, plumbing, electrical

Mehr

Konkret - der Ratgeber: Die besten Tipps zu Internet, Handy und Co. (German Edition)

Konkret - der Ratgeber: Die besten Tipps zu Internet, Handy und Co. (German Edition) Konkret - der Ratgeber: Die besten Tipps zu Internet, Handy und Co. (German Edition) Kenny Lang, Marvin Wolf, Elke Weiss Click here if your download doesn"t start automatically Konkret - der Ratgeber:

Mehr

aus Doktorarbeiten Anna Lena Birkmeyer Oktober 2016

aus Doktorarbeiten Anna Lena Birkmeyer Oktober 2016 aus Doktorarbeiten Anna Lena Birkmeyer Fachbereich Mathematik TU Kaiserslautern Oktober 2016 In der der Arbeit: The mathematical modeling and optimization of... is a wide field of research [4,15,19,35,61,62,66,76,86]

Mehr

Jägersprache, Wildkunde und Begriffe aus der Jagd: Schwerpunkt Jägerprüfung Rotwild, Rehwild, Gamswild, Steinwild, Muffelwild (German Edition)

Jägersprache, Wildkunde und Begriffe aus der Jagd: Schwerpunkt Jägerprüfung Rotwild, Rehwild, Gamswild, Steinwild, Muffelwild (German Edition) Jägersprache, Wildkunde und Begriffe aus der Jagd: Schwerpunkt Jägerprüfung Rotwild, Rehwild, Gamswild, Steinwild, Muffelwild (German Edition) Ernst Jäger Click here if your download doesn"t start automatically

Mehr

Weather forecast in Accra

Weather forecast in Accra Weather forecast in Accra Thursday Friday Saturday Sunday 30 C 31 C 29 C 28 C f = 9 5 c + 32 Temperature in Fahrenheit Temperature in Celsius 2 Converting Celsius to Fahrenheit f = 9 5 c + 32 tempc = 21

Mehr

Fußballtraining für jeden Tag: Die 365 besten Übungen (German Edition)

Fußballtraining für jeden Tag: Die 365 besten Übungen (German Edition) Fußballtraining für jeden Tag: Die 365 besten Übungen (German Edition) Frank Thömmes Click here if your download doesn"t start automatically Fußballtraining für jeden Tag: Die 365 besten Übungen (German

Mehr

Willy Pastor. Click here if your download doesn"t start automatically

Willy Pastor. Click here if your download doesnt start automatically Albrecht Dürer - Der Mann und das Werk (Vollständige Biografie mit 50 Bildern): Das Leben Albrecht Dürers, eines bedeutenden Künstler (Maler, Grafiker... und der Reformation (German Edition) Willy Pastor

Mehr

RECHNUNGSWESEN. KOSTENBEWUßTE UND ERGEBNISORIENTIERTE BETRIEBSFüHRUNG. BY MARTIN GERMROTH

RECHNUNGSWESEN. KOSTENBEWUßTE UND ERGEBNISORIENTIERTE BETRIEBSFüHRUNG. BY MARTIN GERMROTH RECHNUNGSWESEN. KOSTENBEWUßTE UND ERGEBNISORIENTIERTE BETRIEBSFüHRUNG. BY MARTIN GERMROTH DOWNLOAD EBOOK : RECHNUNGSWESEN. KOSTENBEWUßTE UND Click link bellow and free register to download ebook: RECHNUNGSWESEN.

Mehr

Die gesunde Schilddrüse: Was Sie unbedingt wissen sollten über Gewichtsprobleme, Depressionen, Haarausfall und andere Beschwerden (German Edition)

Die gesunde Schilddrüse: Was Sie unbedingt wissen sollten über Gewichtsprobleme, Depressionen, Haarausfall und andere Beschwerden (German Edition) Die gesunde Schilddrüse: Was Sie unbedingt wissen sollten über Gewichtsprobleme, Depressionen, Haarausfall und andere Beschwerden (German Edition) Mary J. Shomon Click here if your download doesn"t start

Mehr

Weiterbildungskolleg der Stadt Bielefeld Abendrealschule Fachbereich Englisch Frachtstraße 8 33602 Bielefeld

Weiterbildungskolleg der Stadt Bielefeld Abendrealschule Fachbereich Englisch Frachtstraße 8 33602 Bielefeld Weiterbildungskolleg der Stadt Bielefeld Abendrealschule Fachbereich Englisch Frachtstraße 8 33602 Bielefeld Requirements for Entering the First Term in English, Exercises to Prepare Yourself / Anforderungen

Mehr

Die besten Chuck Norris Witze: Alle Fakten über den härtesten Mann der Welt (German Edition)

Die besten Chuck Norris Witze: Alle Fakten über den härtesten Mann der Welt (German Edition) Die besten Chuck Norris Witze: Alle Fakten über den härtesten Mann der Welt (German Edition) Click here if your download doesn"t start automatically Die besten Chuck Norris Witze: Alle Fakten über den

Mehr

CALCULATING KPI QUANTITY-INDEPENDENT ROUTE TIME

CALCULATING KPI QUANTITY-INDEPENDENT ROUTE TIME CALCULATING KPI QUANTITY-INDEPENDENT ROUTE TIME Wenn Sie diesen Text lesen können, müssen Sie die Folie im Post-Menü mit der Funktion «Folie einfügen» erneut einfügen. Sonst kann die Fläche nicht eingefärbt

Mehr

Die einfachste Diät der Welt: Das Plus-Minus- Prinzip (GU Reihe Einzeltitel)

Die einfachste Diät der Welt: Das Plus-Minus- Prinzip (GU Reihe Einzeltitel) Die einfachste Diät der Welt: Das Plus-Minus- Prinzip (GU Reihe Einzeltitel) Stefan Frà drich Click here if your download doesn"t start automatically Die einfachste Diät der Welt: Das Plus-Minus-Prinzip

Mehr

Warum nehme ich nicht ab?: Die 100 größten Irrtümer über Essen, Schlanksein und Diäten - Der Bestseller jetzt neu!

Warum nehme ich nicht ab?: Die 100 größten Irrtümer über Essen, Schlanksein und Diäten - Der Bestseller jetzt neu! Warum nehme ich nicht ab?: Die 100 größten Irrtümer über Essen, Schlanksein und Diäten - Der Bestseller jetzt neu! (German Edition) Susanne Walsleben Click here if your download doesn"t start automatically

Mehr

Willy Pastor. Click here if your download doesn"t start automatically

Willy Pastor. Click here if your download doesnt start automatically Albrecht Dürer - Der Mann und das Werk (Vollständige Biografie mit 50 Bildern): Das Leben Albrecht Dürers, eines bedeutenden Künstler (Maler, Grafiker... und der Reformation (German Edition) Willy Pastor

Mehr

Dienstleistungsmanagement Übung 5

Dienstleistungsmanagement Übung 5 Dienstleistungsmanagement Übung 5 Univ.-Prof. Dr.-Ing. Wolfgang Maass Chair in Economics Information and Service Systems (ISS) Saarland University, Saarbrücken, Germany Besprechung Übungsblatt 4 Slide

Mehr

Flow - der Weg zum Glück: Der Entdecker des Flow-Prinzips erklärt seine Lebensphilosophie (HERDER spektrum) (German Edition)

Flow - der Weg zum Glück: Der Entdecker des Flow-Prinzips erklärt seine Lebensphilosophie (HERDER spektrum) (German Edition) Flow - der Weg zum Glück: Der Entdecker des Flow-Prinzips erklärt seine Lebensphilosophie (HERDER spektrum) (German Edition) Mihaly Csikszentmihalyi Click here if your download doesn"t start automatically

Mehr

Web-Apps mit jquery Mobile: Mobile Multiplattform-Entwicklung mit HTML5 und JavaScript (German Edition)

Web-Apps mit jquery Mobile: Mobile Multiplattform-Entwicklung mit HTML5 und JavaScript (German Edition) Web-Apps mit jquery Mobile: Mobile Multiplattform-Entwicklung mit HTML5 und JavaScript (German Edition) Philipp Friberg Click here if your download doesn"t start automatically Web-Apps mit jquery Mobile:

Mehr

Juice: Entgiften, Entspannen und Kräfte sammeln Saft- und Smoothie-Rezepte (German Edition)

Juice: Entgiften, Entspannen und Kräfte sammeln Saft- und Smoothie-Rezepte (German Edition) Juice: Entgiften, Entspannen und Kräfte sammeln - 100 Saft- und Smoothie-Rezepte (German Edition) Rosemary Ferguson Click here if your download doesn"t start automatically Juice: Entgiften, Entspannen

Mehr

Körpersprache im Beruf für Dummies (German Edition)

Körpersprache im Beruf für Dummies (German Edition) Körpersprache im Beruf für Dummies (German Edition) Elizabeth Kuhnke Click here if your download doesn"t start automatically Körpersprache im Beruf für Dummies (German Edition) Elizabeth Kuhnke Körpersprache

Mehr

Analyse und Interpretation der Kurzgeschichte "Die Tochter" von Peter Bichsel mit Unterrichtsentwurf für eine 10. Klassenstufe (German Edition)

Analyse und Interpretation der Kurzgeschichte Die Tochter von Peter Bichsel mit Unterrichtsentwurf für eine 10. Klassenstufe (German Edition) Analyse und Interpretation der Kurzgeschichte "Die Tochter" von Peter Bichsel mit Unterrichtsentwurf für eine 10. Klassenstufe (German Edition) Janina Schnormeier Click here if your download doesn"t start

Mehr

Ausführliche Unterrichtsvorbereitung: Der tropische Regenwald und seine Bedeutung als wichtiger Natur- und Lebensraum (German Edition)

Ausführliche Unterrichtsvorbereitung: Der tropische Regenwald und seine Bedeutung als wichtiger Natur- und Lebensraum (German Edition) Ausführliche Unterrichtsvorbereitung: Der tropische Regenwald und seine Bedeutung als wichtiger Natur- und Lebensraum (German Edition) Sebastian Gräf Click here if your download doesn"t start automatically

Mehr

ELBA2 ILIAS TOOLS AS SINGLE APPLICATIONS

ELBA2 ILIAS TOOLS AS SINGLE APPLICATIONS ELBA2 ILIAS TOOLS AS SINGLE APPLICATIONS An AAA/Switch cooperative project run by LET, ETH Zurich, and ilub, University of Bern Martin Studer, ilub, University of Bern Julia Kehl, LET, ETH Zurich 1 Contents

Mehr

Pluralisierung von Lebensformen - Veränderung familiärer Strukturen und innergesellschaftlicher Wandel (German Edition)

Pluralisierung von Lebensformen - Veränderung familiärer Strukturen und innergesellschaftlicher Wandel (German Edition) Pluralisierung von Lebensformen - Veränderung familiärer Strukturen und innergesellschaftlicher Wandel (German Edition) Olivia Stockhause Click here if your download doesn"t start automatically Pluralisierung

Mehr

Robert Kopf. Click here if your download doesn"t start automatically

Robert Kopf. Click here if your download doesnt start automatically Neurodermitis, Atopisches Ekzem - Behandlung mit Homöopathie, Schüsslersalzen (Biochemie) und Naturheilkunde: Ein homöopathischer, biochemischer und naturheilkundlicher Ratgeber (German Edition) Robert

Mehr

a) Name and draw three typical input signals used in control technique.

a) Name and draw three typical input signals used in control technique. 12 minutes Page 1 LAST NAME FIRST NAME MATRIKEL-NO. Problem 1 (2 points each) a) Name and draw three typical input signals used in control technique. b) What is a weight function? c) Define the eigen value

Mehr

Unit 4. The Extension Principle. Fuzzy Logic I 123

Unit 4. The Extension Principle. Fuzzy Logic I 123 Unit 4 The Extension Principle Fuzzy Logic I 123 Images and Preimages of Functions Let f : X Y be a function and A be a subset of X. Then the image of A w.r.t. f is defined as follows: f(a) = {y Y there

Mehr

VGM. VGM information. HAMBURG SÜD VGM WEB PORTAL - USER GUIDE June 2016

VGM. VGM information. HAMBURG SÜD VGM WEB PORTAL - USER GUIDE June 2016 Overview The Hamburg Süd VGM-Portal is an application which enables to submit VGM information directly to Hamburg Süd via our e-portal web page. You can choose to insert VGM information directly, or download

Mehr

Providers of climate services in Germany

Providers of climate services in Germany Providers of climate services in Germany National Dialog Prof. Dr. Maria Manez Costa Dr. Jörg Cortekar 2 Procedure Mapping of climate services providers - Germany Network development between the providers

Mehr

Bayesian updating in natural hazard risk assessment

Bayesian updating in natural hazard risk assessment International Forum on Engineering Decision Making, Third IFED Forum, Shoal Bay, Australia, 12-15 15 December 2007 1/23 Bayesian updating in natural hazard risk assessment Mathias Graf, Kazuyoshi Nishijima,

Mehr

Microsoft Outlook Das Handbuch (German Edition)

Microsoft Outlook Das Handbuch (German Edition) Microsoft Outlook 2010 - Das Handbuch (German Edition) Thomas Joos Click here if your download doesn"t start automatically Microsoft Outlook 2010 - Das Handbuch (German Edition) Thomas Joos Microsoft Outlook

Mehr

Hardwarekonfiguration an einer Siemens S7-300er Steuerung vornehmen (Unterweisung Elektriker / - in) (German Edition)

Hardwarekonfiguration an einer Siemens S7-300er Steuerung vornehmen (Unterweisung Elektriker / - in) (German Edition) Hardwarekonfiguration an einer Siemens S7-300er Steuerung vornehmen (Unterweisung Elektriker / - in) (German Edition) Thomas Schäfer Click here if your download doesn"t start automatically Hardwarekonfiguration

Mehr

Diabetes zu heilen natürlich: German Edition( Best Seller)

Diabetes zu heilen natürlich: German Edition( Best Seller) Diabetes zu heilen natürlich: German Edition( Best Seller) Dr Maria John Click here if your download doesn"t start automatically Diabetes zu heilen natürlich: German Edition( Best Seller) Dr Maria John

Mehr

p^db=`oj===pìééçêíáåñçêã~íáçå=

p^db=`oj===pìééçêíáåñçêã~íáçå= p^db=`oj===pìééçêíáåñçêã~íáçå= Error: "Could not connect to the SQL Server Instance" or "Failed to open a connection to the database." When you attempt to launch ACT! by Sage or ACT by Sage Premium for

Mehr

Aus FanLiebe zu Tokio Hotel: von Fans fã¼r Fans und ihre Band

Aus FanLiebe zu Tokio Hotel: von Fans fã¼r Fans und ihre Band Aus FanLiebe zu Tokio Hotel: von Fans fã¼r Fans und ihre Band Click here if your download doesn"t start automatically Aus FanLiebe zu Tokio Hotel: von Fans fã¼r Fans und ihre Band Aus FanLiebe zu Tokio

Mehr

Rough copy for the art project >hardware/software< of the imbenge-dreamhouse artist Nele Ströbel.

Rough copy for the art project >hardware/software< of the imbenge-dreamhouse artist Nele Ströbel. Rough copy for the art project >hardware/software< of the imbenge-dreamhouse artist. Title >hardware/software< This art project reflects different aspects of work and its meaning for human kind in our

Mehr

Duell auf offener Straße: Wenn sich Hunde an der Leine aggressiv verhalten (Cadmos Hundebuch) (German Edition)

Duell auf offener Straße: Wenn sich Hunde an der Leine aggressiv verhalten (Cadmos Hundebuch) (German Edition) Duell auf offener Straße: Wenn sich Hunde an der Leine aggressiv verhalten (Cadmos Hundebuch) (German Edition) Nadine Matthews Click here if your download doesn"t start automatically Duell auf offener

Mehr

Der Wolf und die sieben Geißlein: Grimms Märchen für Kinder zum Lesen und Vorlesen (German Edition)

Der Wolf und die sieben Geißlein: Grimms Märchen für Kinder zum Lesen und Vorlesen (German Edition) Der Wolf und die sieben Geißlein: Grimms Märchen für Kinder zum Lesen und Vorlesen (German Edition) Click here if your download doesn"t start automatically Der Wolf und die sieben Geißlein: Grimms Märchen

Mehr

prorm Budget Planning promx GmbH Nordring Nuremberg

prorm Budget Planning promx GmbH Nordring Nuremberg prorm Budget Planning Budget Planning Business promx GmbH Nordring 100 909 Nuremberg E-Mail: support@promx.net Content WHAT IS THE prorm BUDGET PLANNING? prorm Budget Planning Overview THE ADVANTAGES OF

Mehr

HIR Method & Tools for Fit Gap analysis

HIR Method & Tools for Fit Gap analysis HIR Method & Tools for Fit Gap analysis Based on a Powermax APML example 1 Base for all: The Processes HIR-Method for Template Checks, Fit Gap-Analysis, Change-, Quality- & Risk- Management etc. Main processes

Mehr

Reparaturen kompakt - Küche + Bad: Waschbecken, Fliesen, Spüle, Armaturen, Dunstabzugshaube... (German Edition)

Reparaturen kompakt - Küche + Bad: Waschbecken, Fliesen, Spüle, Armaturen, Dunstabzugshaube... (German Edition) Reparaturen kompakt - Küche + Bad: Waschbecken, Fliesen, Spüle, Armaturen, Dunstabzugshaube... (German Edition) Peter Birkholz, Michael Bruns, Karl-Gerhard Haas, Hans-Jürgen Reinbold Click here if your

Mehr

VGM. VGM information. HAMBURG SÜD VGM WEB PORTAL USER GUIDE June 2016

VGM. VGM information. HAMBURG SÜD VGM WEB PORTAL USER GUIDE June 2016 Overview The Hamburg Süd VGM Web portal is an application that enables you to submit VGM information directly to Hamburg Süd via our e-portal Web page. You can choose to enter VGM information directly,

Mehr

Geometrie und Bedeutung: Kap 5

Geometrie und Bedeutung: Kap 5 : Kap 5 21. November 2011 Übersicht Der Begriff des Vektors Ähnlichkeits Distanzfunktionen für Vektoren Skalarprodukt Eukidische Distanz im R n What are vectors I Domininic: Maryl: Dollar Po Euro Yen 6

Mehr

Level 1 German, 2012

Level 1 German, 2012 90886 908860 1SUPERVISOR S Level 1 German, 2012 90886 Demonstrate understanding of a variety of German texts on areas of most immediate relevance 9.30 am Tuesday 13 November 2012 Credits: Five Achievement

Mehr

Max und Moritz: Eine Bubengeschichte in Sieben Streichen (German Edition)

Max und Moritz: Eine Bubengeschichte in Sieben Streichen (German Edition) Max und Moritz: Eine Bubengeschichte in Sieben Streichen (German Edition) Wilhelm Busch Click here if your download doesn"t start automatically Max und Moritz: Eine Bubengeschichte in Sieben Streichen

Mehr

Tote Hose: Worüber Männer schweigen. Ein Tagebuch (German Edition)

Tote Hose: Worüber Männer schweigen. Ein Tagebuch (German Edition) Tote Hose: Worüber Männer schweigen. Ein Tagebuch (German Edition) Walter Raaflaub Click here if your download doesn"t start automatically Tote Hose: Worüber Männer schweigen. Ein Tagebuch (German Edition)

Mehr

Ressourcenmanagement in Netzwerken SS06 Vorl. 12,

Ressourcenmanagement in Netzwerken SS06 Vorl. 12, Ressourcenmanagement in Netzwerken SS06 Vorl. 12, 30.6.06 Friedhelm Meyer auf der Heide Name hinzufügen 1 Prüfungstermine Dienstag, 18.7. Montag, 21. 8. und Freitag, 22.9. Bitte melden sie sich bis zum

Mehr

Algorithms for graph visualization

Algorithms for graph visualization Algorithms for graph visualization Project - Orthogonal Grid Layout with Small Area W INTER SEMESTER 2013/2014 Martin No llenburg KIT Universita t des Landes Baden-Wu rttemberg und nationales Forschungszentrum

Mehr

Das Zeitalter der Fünf 3: Götter (German Edition)

Das Zeitalter der Fünf 3: Götter (German Edition) Das Zeitalter der Fünf 3: Götter (German Edition) Trudi Canavan Click here if your download doesn"t start automatically Das Zeitalter der Fünf 3: Götter (German Edition) Trudi Canavan Das Zeitalter der

Mehr

Microsoft SQL Server Überblick über Konfiguration, Administration, Programmierung (German Edition)

Microsoft SQL Server Überblick über Konfiguration, Administration, Programmierung (German Edition) Microsoft SQL Server 2012 - Überblick über Konfiguration, Administration, Programmierung (German Edition) Markus Raatz, Jörg Knuth, Ruprecht Dröge Click here if your download doesn"t start automatically

Mehr

Accelerating Information Technology Innovation

Accelerating Information Technology Innovation Accelerating Information Technology Innovation http://aiti.mit.edu Ghana Summer 2011 Lecture 05 Functions Weather forecast in Accra Thursday Friday Saturday Sunday 30 C 31 C 29 C 28 C f = 9 5 c + 32 Temperature

Mehr

Tschernobyl: Auswirkungen des Reaktorunfalls auf die Bundesrepublik Deutschland und die DDR (German Edition)

Tschernobyl: Auswirkungen des Reaktorunfalls auf die Bundesrepublik Deutschland und die DDR (German Edition) Tschernobyl: Auswirkungen des Reaktorunfalls auf die Bundesrepublik Deutschland und die DDR (German Edition) Melanie Arndt Click here if your download doesn"t start automatically Tschernobyl: Auswirkungen

Mehr