Database Design and Normal Forms

Størrelse: px
Starte visningen fra side:

Download "Database Design and Normal Forms"

Transkript

1 Database Design and Normal Forms Database Design coming up with a good schema is very important How do we characterize the goodness of a schema? If two or more alternative schemas are available how do we compare them? What are the problems with bad schema designs? Normal Forms: Each normal form specifies certain conditions If the conditions are satisfied by the schema certain kind of problems are avoided Details follow. mywbut.com 1

2 An Example student relation with attributes: studname, rollno, sex, studdept department relation with attributes: deptname, officephone, hod Several students belong to a department. studdept gives the name of the student s department. Correct schema: Student Department studname rollno sex studdept deptname officephone HOD Incorrect schema: Student Dept studname rollno sex deptname officephone HOD What are the problems that arise? mywbut.com 2

3 Problems with bad schema Redundant storage of data: Office Phone & HOD info - stored redundantly once with each student that belongs to the department wastage of disk space A program that updates Office Phone of a department must change it at several places more running time error - prone Transactions running on a database must take as short time as possible to increase transaction throughput mywbut.com 3

4 Update Anomalies Another kind of problem with bad schema Insertion anomaly: No way of inserting info about a new department unless we also enter details of a (dummy) student in the department Deletion anomaly: If all students of a certain department leave and we delete their tuples, information about the department itself is lost Update Anomaly: Updating officephone of a department value in several tuples needs to be changed if a tuple is missed - inconsistency in data mywbut.com 4

5 Normal Forms First Normal Form (1NF) - included in the definition of a relation Second Normal Form (2NF) defined in terms of Third Normal Form (3NF) functional dependencies Boyce-Codd Normal Form (BCNF) Fourth Normal Form (4NF) - defined using multivalued dependencies Fifth Normal Form (5NF) or Project Join Normal Form (PJNF) defined using join dependencies mywbut.com 5

6 Functional Dependencies A functional dependency (FD) X Y (read as X determines Y) (X R, Y R) is said to hold on a schema R if in any instance r on R, if two tuples t 1, t 2 (t 1 t 2, t 1 r, t 2 r) agree on X i.e. t 1 [X] = t 2 [X] then they also agree on Y i.e. t 1 [Y] = t 2 [Y] Note: If K R is a key for R then for any A R, K A holds because the above if..then condition is vacuously true mywbut.com 6

7 Functional Dependencies Examples Consider the schema: Student ( studname, rollno, sex, dept, hostelname, roomno) Since rollno is a key, rollno {studname, sex, dept, hostelname, roomno} Suppose that each student is given a hostel room exclusively, then hostelname, roomno rollno Suppose boys and girls are accommodated in separate hostels, then hostelname sex FDs are additional constraints that can be specified by designers mywbut.com 7

8 Trivial / Non-Trivial FDs An FD X Y where Y X -called a trivial FD, it always holds good An FD X Y where Y X - non-trivial FD An FD X Y where X Y = f - completely non-trivial FD mywbut.com 8

9 Deriving new FDs Given that a set of FDs F holds on R we can infer that a certain new FD must also hold on R For instance, given that X Y, Y Z hold on R we can infer that X Z must also hold How to systematically obtain all such new FDs? Unless all FDs are known, a relation schema is not fully specified mywbut.com 9

10 Entailment relation We say that a set of FDs F { X Y} (read as F entails X Y or F logically implies X Y) if in every instance r of R on which FDs F hold, FD X Y also holds. Armstrong came up with several inference rules for deriving new FDs from a given set of FDs We define F + = {X Y F X Y} F + : Closure of F mywbut.com 10

11 Armstrong s Inference Rules (1/2) 1. Reflexive rule F {X Y Y X} for any X. Trivial FDs 2. Augmentation rule {X Y} {XZ YZ}, Z R. Here XZ denotes X Z 3. Transitive rule {X Y, Y Z} {X Z} 4. Decomposition or Projective rule {X YZ} {X Y} 5. Union or Additive rule {X Y, X Z} {X YZ} 6. Pseudo transitive rule {X Y, WY Z} {WX Z} mywbut.com 11

12 Armstrong's Inference Rules (2/2) Rules 4, 5, 6 are not really necessary. For instance, Rule 5: {X Y, X Z} {X YZ} can be proved using 1, 2, 3 alone 1) X Y 2) X Z given 3) X XY Augmentation rule on 1 4) XY ZY Augmentation rule on 2 5) X ZY Transitive rule on 3, 4. Similarly, 4, 6 can be shown to be unnecessary. But it is useful to have 4, 5, 6 as short-cut rules mywbut.com 12

13 Sound and Complete Inference Rules Armstrong showed that Rules (1), (2) and (3) are sound and complete. These are called Armstrong s Axioms (AA) Soundness: Every new FD X Y derived from a given set of FDs F using Armstrong's Axioms is such that F {X Y} Completeness: Any FD X Y logically implied by F (i.e. F {X Y}) can be derived from F using Armstrong s Axioms mywbut.com 13

14 Proving Soundness Suppose X Y is derived from F using AA in some n steps. If each step is correct then overall deduction would be correct. Single step: Apply Rule (1) or (2) or (3) Rule (1) obviously results in correct FDs Rule (2) {X Y} {XZ YZ}, Z R Suppose t 1, t 2 r agree on XZ t 1, t 2 agree on X t 1, t 2 agree on Y (since X Y holds on r) t 1, t 2 agree as YZ Hence Rule (2) gives rise to correct FDs Rule (3) {X Y, Y Z} X Z Suppose t 1, t 2 r agree on X t 1, t 2 agree on Y (since X Y holds) t 1, t 2 agree on Z (since Y Z holds) mywbut.com 14

15 Proving Completeness of Armstrong s Axioms (1/4) Define X + F (closure of X wrt F) = {A X A can be derived from F using AA}, A R Claim1: X Y can be derived from F using AA iff Y X + (If) Let Y = {A 1, A 2,, A n }. Y X + X A i can be derived from F using AA (1 i n) By union rule, it follows that X Y can be derived from F. (Only If) X Y can be derived from F using AA By projective rule X A i (1 i n) Thus by definition of X +, A i X + Y X + mywbut.com 15

16 Completeness of Armstrong s Axioms (2/4) Completeness: (F {X Y}) X Y follows from F using AA We will prove the contrapositive: X Y can t be derived from F using AA F {X Y} a relation instance r on R st all the FDs of F hold on r but X Y doesn t hold. Consider the relation instance r with just two tuples: X + attributes Other attributes r: mywbut.com 16

17 Completeness Proof (3/4) Claim 2: All FDs of F are satisfied by r Suppose not. Let W Z in F be an FD not satisfied by r Then W X + and Z X + Let A Z X + Now, X W follows from F using AA as W X + (claim 1) X Z follows from F using AA by transitive rule Z A follows from F using AA by reflexive rule as A Z X A follows from F using AA by transitive rule By definition of closures, A must belong to X + - a contradiction. r: Hence the claim X + R - X + mywbut.com 17

18 Completeness Proof (4/4) Claim 3: X Y is not satisfied by r Suppose not Because of the structure of r, Y X + X Y can be derived from F using AA contradicting the assumption about X Y Hence the claim Thus, whenever X Y doesn t follow from F using AA, F doesn t logically imply X Y Armstrong s Axioms are complete. mywbut.com 18

19 Consequence of Completeness of AA X + = {A X A follows from F using AA} = {A F X A} Similarly F + = {X Y F X Y} = {X Y X Y follows from F using AA} mywbut.com 19

20 Computing closures The size of F + can sometimes be exponential in the size of F. For instance, F = {A B 1, A B 2,.., A B n } F + = {A X} where X {B 1, B 2,,B n }. Thus F + = 2 n Computing F + : computationally expensive Fortunately, checking if X Y F + can be done by checking if Y X + F Computing attribute closure (X + F ) is easier mywbut.com 20

21 Computing X + F We compute a sequence of sets X 0, X 1, as follows: X 0 := X; // X is the given set of attributes X i+1 := X i {A there is a FD Y Z in F and A Z and Y X i } Since X 0 X 1 X 2... X i X i+1... R and R is finite, There is an integer i st X i = X i+1 = X i+2 = and X + F is equal to X i. mywbut.com 21

22 Normal Forms 2NF Full functional dependency: An FD X A for which there is no proper subset Y of X such that Y A (A is said to be fully functionally dependent on X) 2NF: A relation schema R is in 2NF if every non-prime attribute is fully functionally dependent on any key of R prime attribute: A attribute that is part of some key non-prime attribute: An attribute that is not part of any key mywbut.com 22

23 Example 1) Book (authorname, title, authoraffiliation, ISBN, publisher, pubyear ) Keys: (authorname, title), ISBN Not in 2NF as authorname Æ authoraffiliation (authoraffiliation is not fully functionally dependent on the first key) 2) Student (rollno, name, dept, sex, hostelname, roomno, admityear) Keys: rollno, (hostelname, roomno) Not in 2NF as hostelname sex student (rollno, name, dept, hostelname, roomno, admityear) hosteldetail (hostelname, sex) - There are both in 2NF mywbut.com 23

24 Transitive Dependencies Transitive dependency: An FD X Y in a relation schema R for which there is a set of attributes Z R such that X Z and Z Y and Z is not a subset of any key of R Ex: student (rollno, name, dept, hostelname, roomno, headdept) Keys: rollno, (hostelname, roomno) rollno dept; dept headdept hold So, rollno headdept a transitive dependency Head of the dept of dept D is stored redundantly in every tuple where D appears. Relation is in 2NF but redundancy still exists. mywbut.com 24

25 Normal Forms 3NF Relation schema R is in 3NF if it is in 2NF and no non-prime attribute of R is transitively dependent on any key of R student (rollno, name, dept, hostelname, roomno, headdept) is not in 3NF Decompose: student (rollno, name, dept, hostelname, roomno) deptinfo (dept, headdept) both in 3NF Redundancy in data storage - removed mywbut.com 25

26 Another definition of 3NF Relation schema R is in 3NF if for any nontrivial FD X A either (i) X is a superkey or (ii) A is prime. Suppose some R violates the above definition There is an FD X A for which both (i) and (ii) are false X is not a superkey and A is non-prime attribute Two cases arise: 1) X is contained in a key A is not fully functionally dependent on this key - violation of 2NF condition 2) X is not contained in a key K X, X A is a case of transitive dependency (K any key of R) mywbut.com 26

27 Motivating example for BCNF gradeinfo (rollno, studname, course, grade) Suppose the following FDs hold: 1) rollno, course grade Keys: 2) studname, course grade (rollno, course) 3) rollno studname (studname, course) 4) studname rollno For 1,2 lhs is a key. For 3,4 rhs is prime So gradeinfo is in 3NF But studname is stored redundantly along with every course being done by the student mywbut.com 27

28 Boyce - Codd Normal Form (BCNF) Relation schema R is in BCNF if for every nontrivial FD X A, X is a superkey of R. In gradeinfo, FDs 3, 4 are nontrivial but lhs is not a superkey So, gradeinfo is not in BCNF Decompose: gradeinfo (rollno, course, grade) studinfo (rollno, studname) Redundancy allowed by 3NF is disallowed by BCNF BCNF is stricter than 3NF 3NF is stricter than 2NF mywbut.com 28

29 Decomposition of a relation schema If R doesn t satisfy a particular normal form, we decompose R into smaller schemas What s a decomposition? R = (A 1, A 2,, A n ) D = (R 1, R 2,, R k ) st R i R and R = R 1 R 2 R k (R i s need not be disjoint) Replacing R by R 1, R 2,, R k process of decomposing R Ex: gradeinfo (rollno, studname, course, grade) R 1 : gradeinfo (rollno, course, grade) R 2 : studinfo (rollno, studname) mywbut.com 29

30 Desirable Properties of Decompositions Not all decomposition of a schema are useful We require two properties to be satisfied (i) Lossless join property - the information in an instance r of R must be preserved in the instances r 1, r 2,,r k where r i = p Ri (r) (ii) Dependency preserving property - if a set F of dependencies hold on R it should be possible to enforce F by enforcing appropriate dependencies on each r i mywbut.com 30

31 Lossless join property F set of FDs that hold on R R decomposed into R 1, R 2,,R k Decomposition is lossless wrt F if for every relation instance r on R satisfying F, r = p R1 (r) * p R2 (r) * * p Rk (r) R = (A, B, C); R 1 = (A, B); R 2 = (B, C) Lossless joins are also called non-additive joins Original info is distorted r: A B C r 1 : A B r 2 : B C r 1 * r 2 : A B C a 1 b 1 c 1 a 1 b 1 b 1 c 1 a 1 b 1 c 1 a 2 b 2 c 2 a 2 b 2 b 2 c 2 a 1 b 1 c 3 a 3 b 1 c 3 a 3 b 1 b 1 c 3 a 2 b 2 c 2 Lossy join Spurious tuples a 3 b 1 c 1 a 3 b 1 c 3 mywbut.com 31

32 Dependency Preserving Decompositions Decomposition D = (R 1, R 2,,R k ) of schema R preserves a set of dependencies F if (p R1 (F) p R2 (F) p Rk (F)) + = F + Here, p Ri (F) = { (X Æ Y) F + X R i, Y R i } (called projection of F onto R i ) Informally, any FD that logically follows from F must also logically follow from the union of projections of F onto R i s Then, D is called dependency preserving. mywbut.com 32

33 An example Schema R = (A, B, C) FDs F = {A B, B C, C A} Decomposition D = (R 1 = {A, B}, R 2 = {B, C}) p R1 (F) = {A B, B A} p R2 (F) = {B C, C B} (p R1 (F) p R2 (F)) + = {A B, B A, B C, C B, A C, C A} = F + Hence Dependency preserving mywbut.com 33

34 Testing for lossless decomposition property(1/6) R given schema with attributes A 1,A 2,, A n F given set of FDs D {R 1,R 2,, R m } given decomposition of R Is D a lossless decomposition? Create an m n matrix S with columns labeled as A 1,A 2,, A n and rows labeled as R 1,R 2,, R m Initialize the matrix as follows: set S(i,j) as symbol b ij for all i,j. if A j is in the scheme R i, then set S(i,j) as symbol a j, for all i,j mywbut.com 34

35 Testing for lossless decomposition property(2/6) After S is initialized, we carry out the following process on it: repeat for each functional dependency U V in F do for all rows in S which agree on U-attributes do make the symbols in each V- attribute column the same in all the rows as follows: if any of the rows has an a symbol for the column set the other rows to the same a symbol in the column else // if no a symbol exists in any of the rows choose one of the b symbols that appears in one of the rows for the V-attribute and set the other rows to that b symbol in the column until no changes to S At the end, if there exists a row with all a symbols then D is lossless otherwise D is a lossy decomposition mywbut.com 35

36 Testing for lossless decomposition property(3/6) R = (rollno, name, advisor, advisordept, course, grade) FD s = { rollno name; rollno advisor; advisor advisordept rollno, course grade} D : { R 1 = (rollno, name, advisor), R 2 = (advisor, advisordept), R 3 = (rollno, course, grade) } Matrix S : (Initial values) rollno name advisor advisor Dept course grade R 1 a 1 a 2 a 3 b 14 b 15 b 16 R 2 b 21 b 22 a 3 a 4 b 25 b 26 R 3 a 1 b 32 b 33 b 34 a 5 a 6 mywbut.com 36

37 Testing for lossless decomposition property(4/6) R = (rollno, name, advisor, advisordept, course, grade) FD s = { rollno name; rollno advisor; advisor advisordept rollno, course grade} D : { R 1 = (rollno, name, advisor), R 2 = (advisor, advisordept), R 3 = (rollno, course, grade) } Matrix S : (After enforcing rollno name & rollno advisor) rollno name advisor advisor Dept course grade R 1 a 1 a 2 a 3 b 14 b 15 b 16 R 2 b 21 b 22 a 3 a 4 b 25 b 26 R 3 a 1 b 32 a 2 b 33 a 3 b 34 a 5 a 6 mywbut.com 37

38 Testing for lossless decomposition property(5/6) R = (rollno, name, advisor, advisordept, course, grade) FD s = { rollno name; rollno advisor; advisor advisordept rollno, course grade} D : { R 1 = (rollno, name, advisor), R 2 = (advisor, advisordept), R 3 = (rollno, course, grade) } Matrix S : (After enforcing advisor advisordept ) rollno name advisor advisor Dept course grade R 1 a 1 a 2 a 3 b 14 a 4 b 15 b 16 R 2 b 21 b 22 a 3 a 4 b 25 b 26 R 3 a 1 b 32 a 2 b 33 a 3 b 34 a 4 a 5 a 6 No more changes. Third row with all a symbols. So a lossless join. mywbut.com 38

39 Testing for lossless decomposition property(6/6) R given schema. F given set of FDs The decomposition of R into R 1, R 2 is lossless wrt F if and only if either R 1 R 2 (R 1 R 2 ) belongs to F + or R 1 R 2 (R 2 R 1 ) belongs to F + Eg. gradeinfo (rollno, studname, course, grade) with FDs = {rollno, course grade; studname, course grade; rollno studname; studname rollno} decomposed into grades (rollno, course, grade) and studinfo (rollno, studname) is lossless because rollno studname mywbut.com 39

40 A property of lossless joins D 1 : (R 1, R 2,, R K ) lossless decomposition of R wrt F D 2 : (R i1, R i2,, R ip ) lossless decomposition of R i wrt F i = p Ri (F) Then D = (R 1, R 2,, R i-1, R i1, R i2,, R ip, R i+1,, R k ) is a lossless decomposition of R wrt F This property is useful in the algorithm for BCNF decomposition mywbut.com 40

41 Algorithm for BCNF decomposition R given schema. F given set of FDs D = {R} // initial decomposition while there is a relation schema R i in D that is not in BCNF do { let X A be the FD in R i violating BCNF; Replace R i by R i1 = R i {A} and R i2 = X {A} in D; } Decomposition of R i is lossless as R i1 R i2 = X, R i2 R i1 = A and X A Result: a lossless decomposition of R into BCNF relations mywbut.com 41

42 Dependencies may not be preserved (1/2) Consider the schema: towninfo (statename, townname, distname) with the FDs F: ST D (town names are unique within a state) D S Keys: ST, DT. all attributes are prime relation in 3NF Relation is not in BCNF as D S and D is not a key Decomposition given by algorithm: R 1 : TD R 2 : DS Not dependency preserving as p R1 (F) = trivial dependencies p R2 (F) = {D S} Union of these doesn t imply ST D ST D can t be enforced unless we perform a join. S T D mywbut.com 42

43 Dependencies may not be preserved (2/2) Consider the schema: R (A, B, C) with the FDs F: AB C and C B Keys: AB, AC relation in 3NF (all attributes are prime) Relation is not in BCNF as C B and C is not a key Decomposition given by algorithm: R 1 : CB R 2 : AC Not dependency preserving as p R1 (F) = trivial dependencies p R2 (F) = {C B} Union of these doesn t imply AB C All possible decompositions: {AB, BC}, {BA, AC}, {AC, CB} Only the last one is lossless! Lossless and dependency-preserving decomposition doesn't exist. mywbut.com 43

44 Equivalent Dependency Sets F, G two sets of FDs on schema R F is said to cover G if G F + (equivalently G + F + ) F is equivalent to G if F + = G + (or, F covers G and G covers F) Note: To check if F covers G, it s enough to show that for each FD X Y in G, Y X + F mywbut.com 44

45 Canonical covers or Minimal covers It is of interest to reduce a set of FDs F into a standard form F such that F is equivalent to F. We define that a set of FDs F is in minimal form if (i) the rhs of any FD of F is a single attribute (ii) there are no redundant FDs in F that is, there is no FD X A in F s.t (F {X A}) is equivalent to F (iii) there are no redundant attributes on the lhs of any FD in F that is, there is no FD X A in F s.t there is Z X for which F {X A} {Z A} is equivalent to F Minimal Covers useful in obtaining a lossless, dependency-preserving decomposition of a scheme R into 3NF relation schemas mywbut.com 45

46 Algorithm for computing a minimal cover R given Schema or set of attributes; F given set of fd s on R Step 1: G := F Step 2: Replace every fd of the form X A 1 A 2 A 3 A k in G by X A 1 ; X A 2 ; X A 3 ; ; X A k Step 3: For each fd X A in G do for each B in X do if A (X B) + wrt G then replace X A by (X B) A Step 4: For each fd X A in G do if (G { X A}) + =G + then replace G by G { X A} mywbut.com 46

47 3NF decomposition algorithm R given Schema; F given set of fd s on R in minimal form Use BCNF algorithm to get a lossless decomposition D = (R 1, R 2,,R k ) Note: each R i is already in 3NF (it is in BCNF in fact!) Algorithm: Let G be the set of fd s not preserved in D For each fd Z A that is in G Add relation scheme S = (B 1,B 2,, B s,a) to D. // Z = {B 1,B 2,, B s } As Z A is in F which is a minimal cover, there is no proper subset X of Z s.t X A. So Z is a key for S! Any other fd X C on S is such that C is in {B 1,B 2,, B s }. Such fd s do not violate 3NF because each B j s is prime a attribute! Thus any scheme S added to D as above is in 3NF. D continues to be lossless even when we add new schemas to it! mywbut.com 47

48 Multi-valued Dependencies (MVDs) studcourse (rollno,courseno, addr) a student enrolls for several courses and has several addresses rollno courseno ( read as rollno multi-determines courseno ) If (CS05B007, CS370, shyam@gmail.com) (CS05B007, CS376, shyam@yahoo.com) appear in the data then (CS05B007, CS376, shyam@gmail.com) (CS05B007, CS370, shyam@yahoo.com) should also appear for, otherwise, it implies that having gmail address has something to with doing course CS370!! By symmetry, rollno addr mywbut.com 48

49 More about MVDs Consider studcoursegrade(rollno,courseno,grade) Note that rollno courseno does not hold here even though courseno is a multi-valued attribute of student If (CS05B007, CS370, A) (CS05B007, CS376, B) appear in the data then (CS05B007, CS376, A) (CS05B007, CS370, B) will not appear!! Attribute grade depends on (rollno,courseno) MVD s arise when two unrelated multi-valued attributes of an entity are sought to be represented together. mywbut.com 49

50 More about MVDs Consider studcourseadvisor(rollno,courseno,advisor) Note that rollno courseno holds here If (CS05B007, CS370, Dr Ravi) (CS05B007, CS376, Dr Ravi) appear in the data then swapping courseno values gives rise to existing tuples only. But, since rollno advisor and (rollno, courseno) is the key, this gets caught in checking for 2NF itself. mywbut.com 50

51 Alternative definition of MVDs Consider R(X,Y,Z) Suppose that X Y and by symmetry X Z Then, decomposition D = (XY, XZ) should be lossless That is, for any instance r on R, r = π XY (r) * π XZ (r) mywbut.com 51

52 MVDs and 4NF An MVD X Y on scheme R is called trivial if either Y X or R = X Y. Otherwise, it is called nontrivial. 4NF: A relation R is in 4NF if it is in BCNF and for every nontrivial MVD X A, X must be a superkey of R. studcourse (rollno,courseno, addr) is not in 4NF as rollno courseno and rollno addr are both nontrivial and rollno is not a superkey for the relation mywbut.com 52

Project Step 7. Behavioral modeling of a dual ported register set. 1/8/ L11 Project Step 5 Copyright Joanne DeGroat, ECE, OSU 1

Project Step 7. Behavioral modeling of a dual ported register set. 1/8/ L11 Project Step 5 Copyright Joanne DeGroat, ECE, OSU 1 Project Step 7 Behavioral modeling of a dual ported register set. Copyright 2006 - Joanne DeGroat, ECE, OSU 1 The register set Register set specifications 16 dual ported registers each with 16- bit words

Læs mere

Basic statistics for experimental medical researchers

Basic statistics for experimental medical researchers Basic statistics for experimental medical researchers Sample size calculations September 15th 2016 Christian Pipper Department of public health (IFSV) Faculty of Health and Medicinal Science (SUND) E-mail:

Læs mere

Exercise 6.14 Linearly independent vectors are also affinely independent.

Exercise 6.14 Linearly independent vectors are also affinely independent. Affine sets Linear Inequality Systems Definition 6.12 The vectors v 1, v 2,..., v k are affinely independent if v 2 v 1,..., v k v 1 is linearly independent; affinely dependent, otherwise. We first check

Læs mere

Besvarelser til Lineær Algebra Reeksamen Februar 2017

Besvarelser til Lineær Algebra Reeksamen Februar 2017 Besvarelser til Lineær Algebra Reeksamen - 7. Februar 207 Mikkel Findinge Bemærk, at der kan være sneget sig fejl ind. Kontakt mig endelig, hvis du skulle falde over en sådan. Dette dokument har udelukkende

Læs mere

Privat-, statslig- eller regional institution m.v. Andet Added Bekaempelsesudfoerende: string No Label: Bekæmpelsesudførende

Privat-, statslig- eller regional institution m.v. Andet Added Bekaempelsesudfoerende: string No Label: Bekæmpelsesudførende Changes for Rottedatabasen Web Service The coming version of Rottedatabasen Web Service will have several changes some of them breaking for the exposed methods. These changes and the business logic behind

Læs mere

Sign variation, the Grassmannian, and total positivity

Sign variation, the Grassmannian, and total positivity Sign variation, the Grassmannian, and total positivity arxiv:1503.05622 Slides available at math.berkeley.edu/~skarp Steven N. Karp, UC Berkeley FPSAC 2015 KAIST, Daejeon Steven N. Karp (UC Berkeley) Sign

Læs mere

User Manual for LTC IGNOU

User Manual for LTC IGNOU User Manual for LTC IGNOU 1 LTC (Leave Travel Concession) Navigation: Portal Launch HCM Application Self Service LTC Self Service 1. LTC Advance/Intimation Navigation: Launch HCM Application Self Service

Læs mere

Black Jack --- Review. Spring 2012

Black Jack --- Review. Spring 2012 Black Jack --- Review Spring 2012 Simulation Simulation can solve real-world problems by modeling realworld processes to provide otherwise unobtainable information. Computer simulation is used to predict

Læs mere

Resource types R 1 1, R 2 2,..., R m CPU cycles, memory space, files, I/O devices Each resource type R i has W i instances.

Resource types R 1 1, R 2 2,..., R m CPU cycles, memory space, files, I/O devices Each resource type R i has W i instances. System Model Resource types R 1 1, R 2 2,..., R m CPU cycles, memory space, files, I/O devices Each resource type R i has W i instances. Each process utilizes a resource as follows: request use e.g., request

Læs mere

Portal Registration. Check Junk Mail for activation . 1 Click the hyperlink to take you back to the portal to confirm your registration

Portal Registration. Check Junk Mail for activation  . 1 Click the hyperlink to take you back to the portal to confirm your registration Portal Registration Step 1 Provide the necessary information to create your user. Note: First Name, Last Name and Email have to match exactly to your profile in the Membership system. Step 2 Click on the

Læs mere

Vina Nguyen HSSP July 13, 2008

Vina Nguyen HSSP July 13, 2008 Vina Nguyen HSSP July 13, 2008 1 What does it mean if sets A, B, C are a partition of set D? 2 How do you calculate P(A B) using the formula for conditional probability? 3 What is the difference between

Læs mere

On the complexity of drawing trees nicely: corrigendum

On the complexity of drawing trees nicely: corrigendum Acta Informatica 40, 603 607 (2004) Digital Object Identifier (DOI) 10.1007/s00236-004-0138-y On the complexity of drawing trees nicely: corrigendum Thorsten Akkerman, Christoph Buchheim, Michael Jünger,

Læs mere

University of Copenhagen Faculty of Science Written Exam - 3. April Algebra 3

University of Copenhagen Faculty of Science Written Exam - 3. April Algebra 3 University of Copenhagen Faculty of Science Written Exam - 3. April 2009 Algebra 3 This exam contains 5 exercises which are to be solved in 3 hours. The exercises are posed in an English and in a Danish

Læs mere

Aktivering af Survey funktionalitet

Aktivering af Survey funktionalitet Surveys i REDCap REDCap gør det muligt at eksponere ét eller flere instrumenter som et survey (spørgeskema) som derefter kan udfyldes direkte af patienten eller forsøgspersonen over internettet. Dette

Læs mere

IBM Network Station Manager. esuite 1.5 / NSM Integration. IBM Network Computer Division. tdc - 02/08/99 lotusnsm.prz Page 1

IBM Network Station Manager. esuite 1.5 / NSM Integration. IBM Network Computer Division. tdc - 02/08/99 lotusnsm.prz Page 1 IBM Network Station Manager esuite 1.5 / NSM Integration IBM Network Computer Division tdc - 02/08/99 lotusnsm.prz Page 1 New esuite Settings in NSM The Lotus esuite Workplace administration option is

Læs mere

Skriftlig Eksamen Beregnelighed (DM517)

Skriftlig Eksamen Beregnelighed (DM517) Skriftlig Eksamen Beregnelighed (DM517) Institut for Matematik & Datalogi Syddansk Universitet Mandag den 31 Oktober 2011, kl. 9 13 Alle sædvanlige hjælpemidler (lærebøger, notater etc.) samt brug af lommeregner

Læs mere

Curve Modeling B-Spline Curves. Dr. S.M. Malaek. Assistant: M. Younesi

Curve Modeling B-Spline Curves. Dr. S.M. Malaek. Assistant: M. Younesi Curve Modeling B-Spline Curves Dr. S.M. Malaek Assistant: M. Younesi Motivation B-Spline Basis: Motivation Consider designing the profile of a vase. The left figure below is a Bézier curve of degree 11;

Læs mere

Brug sømbrættet til at lave sjove figurer. Lav fx: Få de andre til at gætte, hvad du har lavet. Use the nail board to make funny shapes.

Brug sømbrættet til at lave sjove figurer. Lav fx: Få de andre til at gætte, hvad du har lavet. Use the nail board to make funny shapes. Brug sømbrættet til at lave sjove figurer. Lav f: Et dannebrogsflag Et hus med tag, vinduer og dør En fugl En bil En blomst Få de andre til at gætte, hvad du har lavet. Use the nail board to make funn

Læs mere

Satisability of Boolean Formulas

Satisability of Boolean Formulas SAT exercises 1 March, 2016 slide 1 Satisability of Boolean Formulas Combinatorics and Algorithms Prof. Emo Welzl Assistant: (CAB G36.1, cannamalai@inf.ethz.ch) URL: http://www.ti.inf.ethz.ch/ew/courses/sat16/

Læs mere

Vores mange brugere på musskema.dk er rigtig gode til at komme med kvalificerede ønsker og behov.

Vores mange brugere på musskema.dk er rigtig gode til at komme med kvalificerede ønsker og behov. På dansk/in Danish: Aarhus d. 10. januar 2013/ the 10 th of January 2013 Kære alle Chefer i MUS-regi! Vores mange brugere på musskema.dk er rigtig gode til at komme med kvalificerede ønsker og behov. Og

Læs mere

GUIDE TIL BREVSKRIVNING

GUIDE TIL BREVSKRIVNING GUIDE TIL BREVSKRIVNING APPELBREVE Formålet med at skrive et appelbrev er at få modtageren til at overholde menneskerettighederne. Det er en god idé at lægge vægt på modtagerens forpligtelser over for

Læs mere

DET KONGELIGE BIBLIOTEK NATIONALBIBLIOTEK OG KØBENHAVNS UNIVERSITETS- BIBLIOTEK. Index

DET KONGELIGE BIBLIOTEK NATIONALBIBLIOTEK OG KØBENHAVNS UNIVERSITETS- BIBLIOTEK. Index DET KONGELIGE Index Download driver... 2 Find the Windows 7 version.... 2 Download the Windows Vista driver.... 4 Extract driver... 5 Windows Vista installation of a printer.... 7 Side 1 af 12 DET KONGELIGE

Læs mere

Kurver og flader Aktivitet 15 Geodætiske kurver, Isometri, Mainardi-Codazzi, Teorema Egregium

Kurver og flader Aktivitet 15 Geodætiske kurver, Isometri, Mainardi-Codazzi, Teorema Egregium Kurver og flader Aktivitet 15 Geodætiske kurver, Isometri, Mainardi-Codazzi, Teorema Egregium Lisbeth Fajstrup Institut for Matematiske Fag Aalborg Universitet Kurver og Flader 2013 Lisbeth Fajstrup (AAU)

Læs mere

E-PAD Bluetooth hængelås E-PAD Bluetooth padlock E-PAD Bluetooth Vorhängeschloss

E-PAD Bluetooth hængelås E-PAD Bluetooth padlock E-PAD Bluetooth Vorhängeschloss E-PAD Bluetooth hængelås E-PAD Bluetooth padlock E-PAD Bluetooth Vorhängeschloss Brugervejledning (side 2-6) Userguide (page 7-11) Bedienungsanleitung 1 - Hvordan forbinder du din E-PAD hængelås med din

Læs mere

The X Factor. Målgruppe. Læringsmål. Introduktion til læreren klasse & ungdomsuddannelser Engelskundervisningen

The X Factor. Målgruppe. Læringsmål. Introduktion til læreren klasse & ungdomsuddannelser Engelskundervisningen The X Factor Målgruppe 7-10 klasse & ungdomsuddannelser Engelskundervisningen Læringsmål Eleven kan give sammenhængende fremstillinger på basis af indhentede informationer Eleven har viden om at søge og

Læs mere

Skriftlig Eksamen Kombinatorik, Sandsynlighed og Randomiserede Algoritmer (DM528)

Skriftlig Eksamen Kombinatorik, Sandsynlighed og Randomiserede Algoritmer (DM528) Skriftlig Eksamen Kombinatorik, Sandsynlighed og Randomiserede Algoritmer (DM58) Institut for Matematik og Datalogi Syddansk Universitet, Odense Torsdag den 1. januar 01 kl. 9 13 Alle sædvanlige hjælpemidler

Læs mere

PARALLELIZATION OF ATTILA SIMULATOR WITH OPENMP MIGUEL ÁNGEL MARTÍNEZ DEL AMOR MINIPROJECT OF TDT24 NTNU

PARALLELIZATION OF ATTILA SIMULATOR WITH OPENMP MIGUEL ÁNGEL MARTÍNEZ DEL AMOR MINIPROJECT OF TDT24 NTNU PARALLELIZATION OF ATTILA SIMULATOR WITH OPENMP MIGUEL ÁNGEL MARTÍNEZ DEL AMOR MINIPROJECT OF TDT24 NTNU OUTLINE INEFFICIENCY OF ATTILA WAYS TO PARALLELIZE LOW COMPATIBILITY IN THE COMPILATION A SOLUTION

Læs mere

Strings and Sets: set complement, union, intersection, etc. set concatenation AB, power of set A n, A, A +

Strings and Sets: set complement, union, intersection, etc. set concatenation AB, power of set A n, A, A + Strings and Sets: A string over Σ is any nite-length sequence of elements of Σ The set of all strings over alphabet Σ is denoted as Σ Operators over set: set complement, union, intersection, etc. set concatenation

Læs mere

Trolling Master Bornholm 2016 Nyhedsbrev nr. 3

Trolling Master Bornholm 2016 Nyhedsbrev nr. 3 Trolling Master Bornholm 2016 Nyhedsbrev nr. 3 English version further down Den første dag i Bornholmerlaks konkurrencen Formanden for Bornholms Trollingklub, Anders Schou Jensen (og meddomer i TMB) fik

Læs mere

Det er muligt at chekce følgende opg. i CodeJudge: og

Det er muligt at chekce følgende opg. i CodeJudge: og Det er muligt at chekce følgende opg. i CodeJudge:.1.7 og.1.14 Exercise 1: Skriv en forløkke, som producerer følgende output: 1 4 9 16 5 36 Bonusopgave: Modificer dit program, så det ikke benytter multiplikation.

Læs mere

University of Copenhagen Faculty of Science Written Exam April Algebra 3

University of Copenhagen Faculty of Science Written Exam April Algebra 3 University of Copenhagen Faculty of Science Written Exam - 16. April 2010 Algebra This exam contains 5 exercises which are to be solved in hours. The exercises are posed in an English and in a Danish version.

Læs mere

South Baileygate Retail Park Pontefract

South Baileygate Retail Park Pontefract Key Details : available June 2016 has a primary shopping catchment of 77,000 (source: PMA), extending to 186,000 within 10km (source: FOCUS) 86,000 sq ft of retail including Aldi, B&M, Poundstretcher,

Læs mere

Informal Design Guidelines. March 23, 2008 DB:EER Model - 1 1

Informal Design Guidelines. March 23, 2008 DB:EER Model - 1 1 Informal Design Guidelines March 23, 2008 DB:EER Model - 1 1 Objectives Measuring the Quality of Relational Database Design + Database Design Methodology + Informal Design Guidelines for Relational Schema

Læs mere

Linear Programming ١ C H A P T E R 2

Linear Programming ١ C H A P T E R 2 Linear Programming ١ C H A P T E R 2 Problem Formulation Problem formulation or modeling is the process of translating a verbal statement of a problem into a mathematical statement. The Guidelines of formulation

Læs mere

Skriftlig Eksamen Automatteori og Beregnelighed (DM17)

Skriftlig Eksamen Automatteori og Beregnelighed (DM17) Skriftlig Eksamen Automatteori og Beregnelighed (DM17) Institut for Matematik & Datalogi Syddansk Universitet Odense Campus Lørdag, den 15. Januar 2005 Alle sædvanlige hjælpemidler (lærebøger, notater

Læs mere

University of Copenhagen Faculty of Science Written Exam - 8. April 2008. Algebra 3

University of Copenhagen Faculty of Science Written Exam - 8. April 2008. Algebra 3 University of Copenhagen Faculty of Science Written Exam - 8. April 2008 Algebra 3 This exam contains 5 exercises which are to be solved in 3 hours. The exercises are posed in an English and in a Danish

Læs mere

Database. lv/

Database. lv/ Database 1 Database Design Begreber 1 Database: En fælles samling af logiske relaterede data (informationer) DBMS (database management system) Et SW system der gør det muligt at definer, oprette og vedligeholde

Læs mere

OXFORD. Botley Road. Key Details: Oxford has an extensive primary catchment of 494,000 people

OXFORD. Botley Road. Key Details: Oxford has an extensive primary catchment of 494,000 people OXFORD Key Details: Oxford has an extensive primary catchment of 494,000 people Prominent, modern scheme situated in prime retail area Let to PC World & Carpetright and close to Dreams, Currys, Land of

Læs mere

Skriftlig Eksamen Beregnelighed (DM517)

Skriftlig Eksamen Beregnelighed (DM517) Skriftlig Eksamen Beregnelighed (DM517) Institut for Matematik & Datalogi Syddansk Universitet Mandag den 7 Januar 2008, kl. 9 13 Alle sædvanlige hjælpemidler (lærebøger, notater etc.) samt brug af lommeregner

Læs mere

Skriftlig Eksamen Diskret matematik med anvendelser (DM72)

Skriftlig Eksamen Diskret matematik med anvendelser (DM72) Skriftlig Eksamen Diskret matematik med anvendelser (DM72) Institut for Matematik & Datalogi Syddansk Universitet, Odense Onsdag den 18. januar 2006 Alle sædvanlige hjælpemidler (lærebøger, notater etc.),

Læs mere

Engelsk. Niveau D. De Merkantile Erhvervsuddannelser September Casebaseret eksamen. og

Engelsk. Niveau D. De Merkantile Erhvervsuddannelser September Casebaseret eksamen.  og 052431_EngelskD 08/09/05 13:29 Side 1 De Merkantile Erhvervsuddannelser September 2005 Side 1 af 4 sider Casebaseret eksamen Engelsk Niveau D www.jysk.dk og www.jysk.com Indhold: Opgave 1 Presentation

Læs mere

ATEX direktivet. Vedligeholdelse af ATEX certifikater mv. Steen Christensen stec@teknologisk.dk www.atexdirektivet.

ATEX direktivet. Vedligeholdelse af ATEX certifikater mv. Steen Christensen stec@teknologisk.dk www.atexdirektivet. ATEX direktivet Vedligeholdelse af ATEX certifikater mv. Steen Christensen stec@teknologisk.dk www.atexdirektivet.dk tlf: 7220 2693 Vedligeholdelse af Certifikater / tekniske dossier / overensstemmelseserklæringen.

Læs mere

Generalized Probit Model in Design of Dose Finding Experiments. Yuehui Wu Valerii V. Fedorov RSU, GlaxoSmithKline, US

Generalized Probit Model in Design of Dose Finding Experiments. Yuehui Wu Valerii V. Fedorov RSU, GlaxoSmithKline, US Generalized Probit Model in Design of Dose Finding Experiments Yuehui Wu Valerii V. Fedorov RSU, GlaxoSmithKline, US Outline Motivation Generalized probit model Utility function Locally optimal designs

Læs mere

Titel: Barry s Bespoke Bakery

Titel: Barry s Bespoke Bakery Titel: Tema: Kærlighed, kager, relationer Fag: Engelsk Målgruppe: 8.-10.kl. Data om læremidlet: Tv-udsendelse: SVT2, 03-08-2014, 10 min. Denne pædagogiske vejledning indeholder ideer til arbejdet med tema

Læs mere

CS 4390/5387 SOFTWARE V&V LECTURE 5 BLACK-BOX TESTING - 2

CS 4390/5387 SOFTWARE V&V LECTURE 5 BLACK-BOX TESTING - 2 1 CS 4390/5387 SOFTWARE V&V LECTURE 5 BLACK-BOX TESTING - 2 Outline 2 HW Solution Exercise (Equivalence Class Testing) Exercise (Decision Table Testing) Pairwise Testing Exercise (Pairwise Testing) 1 Homework

Læs mere

how to save excel as pdf

how to save excel as pdf 1 how to save excel as pdf This guide will show you how to save your Excel workbook as PDF files. Before you do so, you may want to copy several sheets from several documents into one document. To do so,

Læs mere

CHAPTER 8: USING OBJECTS

CHAPTER 8: USING OBJECTS Ruby: Philosophy & Implementation CHAPTER 8: USING OBJECTS Introduction to Computer Science Using Ruby Ruby is the latest in the family of Object Oriented Programming Languages As such, its designer studied

Læs mere

RoE timestamp and presentation time in past

RoE timestamp and presentation time in past RoE timestamp and presentation time in past Jouni Korhonen Broadcom Ltd. 5/26/2016 9 June 2016 IEEE 1904 Access Networks Working Group, Hørsholm, Denmark 1 Background RoE 2:24:6 timestamp was recently

Læs mere

Unitel EDI MT940 June 2010. Based on: SWIFT Standards - Category 9 MT940 Customer Statement Message (January 2004)

Unitel EDI MT940 June 2010. Based on: SWIFT Standards - Category 9 MT940 Customer Statement Message (January 2004) Unitel EDI MT940 June 2010 Based on: SWIFT Standards - Category 9 MT940 Customer Statement Message (January 2004) Contents 1. Introduction...3 2. General...3 3. Description of the MT940 message...3 3.1.

Læs mere

DM549 Diskrete Metoder til Datalogi

DM549 Diskrete Metoder til Datalogi DM549 Diskrete Metoder til Datalogi Spørgsmål 1 (8%) Hvilke udsagn er sande? Husk, at symbolet betyder går op i. Which propositions are true? Recall that the symbol means divides. Svar 1.a: n Z: 2n > n

Læs mere

DANSK INSTALLATIONSVEJLEDNING VLMT500 ADVARSEL!

DANSK INSTALLATIONSVEJLEDNING VLMT500 ADVARSEL! DANSK INSTALLATIONSVEJLEDNING VLMT500 Udpakningsinstruktioner Åben indpakningen forsigtigt og læg indholdet på et stykke pap eller en anden beskyttende overflade for at undgå beskadigelse. Kontroller at

Læs mere

Statistik for MPH: 7

Statistik for MPH: 7 Statistik for MPH: 7 3. november 2011 www.biostat.ku.dk/~pka/mph11 Attributable risk, bestemmelse af stikprøvestørrelse (Silva: 333-365, 381-383) Per Kragh Andersen 1 Fra den 6. uges statistikundervisning:

Læs mere

Boligsøgning / Search for accommodation!

Boligsøgning / Search for accommodation! Boligsøgning / Search for accommodation! For at guide dig frem til den rigtige vejledning, skal du lige svare på et par spørgsmål: To make sure you are using the correct guide for applying you must answer

Læs mere

Den nye Eurocode EC Geotenikerdagen Morten S. Rasmussen

Den nye Eurocode EC Geotenikerdagen Morten S. Rasmussen Den nye Eurocode EC1997-1 Geotenikerdagen Morten S. Rasmussen UDFORDRINGER VED EC 1997-1 HVAD SKAL VI RUNDE - OPBYGNINGEN AF DE NYE EUROCODES - DE STØRSTE UDFORDRINGER - ER DER NOGET POSITIVT? 2 OPBYGNING

Læs mere

Fejlbeskeder i SMDB. Business Rules Fejlbesked Kommentar. Validate Business Rules. Request- ValidateRequestRegist ration (Rules :1)

Fejlbeskeder i SMDB. Business Rules Fejlbesked Kommentar. Validate Business Rules. Request- ValidateRequestRegist ration (Rules :1) Fejlbeskeder i SMDB Validate Business Rules Request- ValidateRequestRegist ration (Rules :1) Business Rules Fejlbesked Kommentar the municipality must have no more than one Kontaktforløb at a time Fejl

Læs mere

The complete construction for copying a segment, AB, is shown above. Describe each stage of the process.

The complete construction for copying a segment, AB, is shown above. Describe each stage of the process. A a compass, a straightedge, a ruler, patty paper B C A Stage 1 Stage 2 B C D Stage 3 The complete construction for copying a segment, AB, is shown above. Describe each stage of the process. Use a ruler

Læs mere

ECE 551: Digital System * Design & Synthesis Lecture Set 5

ECE 551: Digital System * Design & Synthesis Lecture Set 5 ECE 551: Digital System * Design & Synthesis Lecture Set 5 5.1: Verilog Behavioral Model for Finite State Machines (FSMs) 5.2: Verilog Simulation I/O and 2001 Standard (In Separate File) 3/4/2003 1 ECE

Læs mere

Probabilistic properties of modular addition. Victoria Vysotskaya

Probabilistic properties of modular addition. Victoria Vysotskaya Probabilistic properties of modular addition Victoria Vysotskaya JSC InfoTeCS, NPK Kryptonite CTCrypt 19 / June 4, 2019 vysotskaya.victory@gmail.com Victoria Vysotskaya (Infotecs, Kryptonite) Probabilistic

Læs mere

Statistik for MPH: oktober Attributable risk, bestemmelse af stikprøvestørrelse (Silva: , )

Statistik for MPH: oktober Attributable risk, bestemmelse af stikprøvestørrelse (Silva: , ) Statistik for MPH: 7 29. oktober 2015 www.biostat.ku.dk/~pka/mph15 Attributable risk, bestemmelse af stikprøvestørrelse (Silva: 333-365, 381-383) Per Kragh Andersen 1 Fra den 6. uges statistikundervisning:

Læs mere

Special VFR. - ved flyvning til mindre flyveplads uden tårnkontrol som ligger indenfor en kontrolzone

Special VFR. - ved flyvning til mindre flyveplads uden tårnkontrol som ligger indenfor en kontrolzone Special VFR - ved flyvning til mindre flyveplads uden tårnkontrol som ligger indenfor en kontrolzone SERA.5005 Visual flight rules (a) Except when operating as a special VFR flight, VFR flights shall be

Læs mere

Løsning af skyline-problemet

Løsning af skyline-problemet Løsning af skyline-problemet Keld Helsgaun RUC, oktober 1999 Efter at have overvejet problemet en stund er min første indskydelse, at jeg kan opnå en løsning ved at tilføje en bygning til den aktuelle

Læs mere

Engelsk. Niveau C. De Merkantile Erhvervsuddannelser September 2005. Casebaseret eksamen. www.jysk.dk og www.jysk.com.

Engelsk. Niveau C. De Merkantile Erhvervsuddannelser September 2005. Casebaseret eksamen. www.jysk.dk og www.jysk.com. 052430_EngelskC 08/09/05 13:29 Side 1 De Merkantile Erhvervsuddannelser September 2005 Side 1 af 4 sider Casebaseret eksamen Engelsk Niveau C www.jysk.dk og www.jysk.com Indhold: Opgave 1 Presentation

Læs mere

Trolling Master Bornholm 2016 Nyhedsbrev nr. 5

Trolling Master Bornholm 2016 Nyhedsbrev nr. 5 Trolling Master Bornholm 2016 Nyhedsbrev nr. 5 English version further down Kim Finne med 11 kg laks Laksen blev fanget i denne uge øst for Bornholm ud for Nexø. Et andet eksempel er her to laks taget

Læs mere

Trolling Master Bornholm 2016 Nyhedsbrev nr. 8

Trolling Master Bornholm 2016 Nyhedsbrev nr. 8 Trolling Master Bornholm 2016 Nyhedsbrev nr. 8 English version further down Der bliver landet fisk men ikke mange Her er det Johnny Nielsen, Søløven, fra Tejn, som i denne uge fangede 13,0 kg nord for

Læs mere

DoodleBUGS (Hands-on)

DoodleBUGS (Hands-on) DoodleBUGS (Hands-on) Simple example: Program: bino_ave_sim_doodle.odc A simulation example Generate a sample from F=(r1+r2)/2 where r1~bin(0.5,200) and r2~bin(0.25,100) Note that E(F)=(100+25)/2=62.5

Læs mere

what is this all about? Introduction three-phase diode bridge rectifier input voltages input voltages, waveforms normalization of voltages voltages?

what is this all about? Introduction three-phase diode bridge rectifier input voltages input voltages, waveforms normalization of voltages voltages? what is this all about? v A Introduction three-phase diode bridge rectifier D1 D D D4 D5 D6 i OUT + v OUT v B i 1 i i + + + v 1 v v input voltages input voltages, waveforms v 1 = V m cos ω 0 t v = V m

Læs mere

Titel: Hungry - Fedtbjerget

Titel: Hungry - Fedtbjerget Titel: Hungry - Fedtbjerget Tema: fedme, kærlighed, relationer Fag: Engelsk Målgruppe: 8.-10.kl. Data om læremidlet: Tv-udsendelse: TV0000006275 25 min. DR Undervisning 29-01-2001 Denne pædagogiske vejledning

Læs mere

QUICK START Updated: 18. Febr. 2014

QUICK START Updated: 18. Febr. 2014 QUICK START Updated: 18. Febr. 2014 For at komme hurtigt og godt igang med dine nye Webstech produkter, anbefales at du downloader den senest opdaterede QuickStart fra vores hjemmeside: In order to get

Læs mere

Financial Literacy among 5-7 years old children

Financial Literacy among 5-7 years old children Financial Literacy among 5-7 years old children -based on a market research survey among the parents in Denmark, Sweden, Norway, Finland, Northern Ireland and Republic of Ireland Page 1 Purpose of the

Læs mere

Basic Design Flow. Logic Design Logic synthesis Logic optimization Technology mapping Physical design. Floorplanning Placement Fabrication

Basic Design Flow. Logic Design Logic synthesis Logic optimization Technology mapping Physical design. Floorplanning Placement Fabrication Basic Design Flow System design System/Architectural Design Instruction set for processor Hardware/software partition Memory, cache Logic design Logic Design Logic synthesis Logic optimization Technology

Læs mere

Shooting tethered med Canon EOS-D i Capture One Pro. Shooting tethered i Capture One Pro 6.4 & 7.0 på MAC OS-X 10.7.5 & 10.8

Shooting tethered med Canon EOS-D i Capture One Pro. Shooting tethered i Capture One Pro 6.4 & 7.0 på MAC OS-X 10.7.5 & 10.8 Shooting tethered med Canon EOS-D i Capture One Pro Shooting tethered i Capture One Pro 6.4 & 7.0 på MAC OS-X 10.7.5 & 10.8 For Canon EOS-D ejere der fotograferer Shooting tethered med EOS-Utility eller

Læs mere

Trolling Master Bornholm 2015

Trolling Master Bornholm 2015 Trolling Master Bornholm 2015 (English version further down) Panorama billede fra starten den første dag i 2014 Michael Koldtoft fra Trolling Centrum har brugt lidt tid på at arbejde med billederne fra

Læs mere

Help / Hjælp

Help / Hjælp Home page Lisa & Petur www.lisapetur.dk Help / Hjælp Help / Hjælp General The purpose of our Homepage is to allow external access to pictures and videos taken/made by the Gunnarsson family. The Association

Læs mere

Bookingmuligheder for professionelle brugere i Dansehallerne 2015-16

Bookingmuligheder for professionelle brugere i Dansehallerne 2015-16 Bookingmuligheder for professionelle brugere i Dansehallerne 2015-16 Modtager man økonomisk støtte til et danseprojekt, har en premieredato og er professionel bruger af Dansehallerne har man mulighed for

Læs mere

QUICK START Updated:

QUICK START Updated: QUICK START Updated: 24.08.2018 For at komme hurtigt og godt igang med dine nye Webstech produkter, anbefales at du downloader den senest opdaterede QuickStart fra vores hjemmeside: In order to get started

Læs mere

Status på det trådløse netværk

Status på det trådløse netværk Status på det trådløse netværk Der er stadig problemer med det trådløse netværk, se status her: http://driftstatus.sdu.dk/?f=&antal=200&driftid=1671#1671 IT-service arbejder stadig med at løse problemerne

Læs mere

Adaptive Algorithms for Blind Separation of Dependent Sources. George V. Moustakides INRIA, Sigma 2

Adaptive Algorithms for Blind Separation of Dependent Sources. George V. Moustakides INRIA, Sigma 2 Adaptive Algorithms for Blind Separation of Dependent Sources George V. Moustakides INRIA, Sigma 2 Problem definition-motivation Existing adaptive scheme-independence General adaptive scheme-dependence

Læs mere

Business Rules Fejlbesked Kommentar

Business Rules Fejlbesked Kommentar Fejlbeskeder i SMDB Validate Business Request- ValidateRequestRegi stration ( :1) Business Fejlbesked Kommentar the municipality must have no more than one Kontaktforløb at a time Fejl 1: Anmodning En

Læs mere

X M Y. What is mediation? Mediation analysis an introduction. Definition

X M Y. What is mediation? Mediation analysis an introduction. Definition What is mediation? an introduction Ulla Hvidtfeldt Section of Social Medicine - Investigate underlying mechanisms of an association Opening the black box - Strengthen/support the main effect hypothesis

Læs mere

Subject to terms and conditions. WEEK Type Price EUR WEEK Type Price EUR WEEK Type Price EUR WEEK Type Price EUR

Subject to terms and conditions. WEEK Type Price EUR WEEK Type Price EUR WEEK Type Price EUR WEEK Type Price EUR ITSO SERVICE OFFICE Weeks for Sale 31/05/2015 m: +34 636 277 307 w: clublasanta-timeshare.com e: roger@clublasanta.com See colour key sheet news: rogercls.blogspot.com Subject to terms and conditions THURSDAY

Læs mere

TM4 Central Station. User Manual / brugervejledning K2070-EU. Tel Fax

TM4 Central Station. User Manual / brugervejledning K2070-EU. Tel Fax TM4 Central Station User Manual / brugervejledning K2070-EU STT Condigi A/S Niels Bohrs Vej 42, Stilling 8660 Skanderborg Denmark Tel. +45 87 93 50 00 Fax. +45 87 93 50 10 info@sttcondigi.com www.sttcondigi.com

Læs mere

INSTALLATION INSTRUCTIONS STILLEN FRONT BRAKE COOLING DUCTS NISSAN 370Z P/N /308960!

INSTALLATION INSTRUCTIONS STILLEN FRONT BRAKE COOLING DUCTS NISSAN 370Z P/N /308960! Materials supplied: 1. (10) Zip Ties 2. (4) Hose Clamps 3. (2) Brake Duct Hose 4. (2) Brake Shields 5. (2) Front Brake Ducts ( Stock Fascia Only ) 6. (2) Washers 1 OD ( Stock Fascia Only ) 7. (8) Shims

Læs mere

The River Underground, Additional Work

The River Underground, Additional Work 39 (104) The River Underground, Additional Work The River Underground Crosswords Across 1 Another word for "hard to cope with", "unendurable", "insufferable" (10) 5 Another word for "think", "believe",

Læs mere

Fejlbeskeder i Stofmisbrugsdatabasen (SMDB)

Fejlbeskeder i Stofmisbrugsdatabasen (SMDB) Fejlbeskeder i Stofmisbrugsdatabasen (SMDB) Oversigt over fejlbeskeder (efter fejlnummer) ved indberetning til SMDB via webløsning og via webservices (hvor der dog kan være yderligere typer fejlbeskeder).

Læs mere

SOFTWARE PROCESSES. Dorte, Ida, Janne, Nikolaj, Alexander og Erla

SOFTWARE PROCESSES. Dorte, Ida, Janne, Nikolaj, Alexander og Erla SOFTWARE PROCESSES Dorte, Ida, Janne, Nikolaj, Alexander og Erla Hvad er en software proces? Et struktureret sæt af AKTIVITETER, hvis mål er udvikling af software. En software proces model er en abstrakt

Læs mere

Userguide. NN Markedsdata. for. Microsoft Dynamics CRM 2011. v. 1.0

Userguide. NN Markedsdata. for. Microsoft Dynamics CRM 2011. v. 1.0 Userguide NN Markedsdata for Microsoft Dynamics CRM 2011 v. 1.0 NN Markedsdata www. Introduction Navne & Numre Web Services for Microsoft Dynamics CRM hereafter termed NN-DynCRM enable integration to Microsoft

Læs mere

Læs venligst Beboer information om projekt vandskade - sikring i 2015/2016

Læs venligst Beboer information om projekt vandskade - sikring i 2015/2016 Læs venligst Beboer information om projekt vandskade - sikring i 2015/2016 Vi er nødsaget til at få adgang til din lejlighed!! Hvis Kridahl (VVS firma) har bedt om adgang til din/jeres lejlighed og nøgler,

Læs mere

INGEN HASTVÆRK! NO RUSH!

INGEN HASTVÆRK! NO RUSH! INGEN HASTVÆRK! NO RUSH! Keld Jensen Nr. 52, december 2018 No. 52, December 2018 Ingen hastværk! Vær nu helt ærlig! Hvornår har du sidst opholdt dig længere tid et sted i naturen? Uden hastværk. Uden unødvendig

Læs mere

Da beskrivelserne i danzig Profile Specification ikke er fuldt færdige, foreslås:

Da beskrivelserne i danzig Profile Specification ikke er fuldt færdige, foreslås: NOTAT 6. juni 2007 J.nr.: 331-3 LEA Bilag A danzig-møde 15.6.2007 Opdatering af DAN-1 og danzig Profile Specification Forslag til opdatering af Z39.50 specifikationerne efter udgivelse af Praksisregler

Læs mere

Blomsten er rød (af Harry Chapin, oversat af Niels Hausgaard)

Blomsten er rød (af Harry Chapin, oversat af Niels Hausgaard) Blomsten er rød (af Harry Chapin, oversat af Niels Hausgaard) På den allerførste skoledag fik de farver og papir. Den lille dreng farved arket fuldt. Han ku bare ik la vær. Og lærerinden sagde: Hvad er

Læs mere

1 What is the connection between Lee Harvey Oswald and Russia? Write down three facts from his file.

1 What is the connection between Lee Harvey Oswald and Russia? Write down three facts from his file. Lee Harvey Oswald 1 Lee Harvey Oswald s profile Read Oswald s profile. Answer the questions. 1 What is the connection between Lee Harvey Oswald and Russia? Write down three facts from his file. 2 Oswald

Læs mere

Timetable will be aviable after sep. 5. when the sing up ends. Provicius timetable on the next sites.

Timetable will be aviable after sep. 5. when the sing up ends. Provicius timetable on the next sites. English Information about the race. Practise Friday oct. 9 from 12.00 to 23.00 Saturday oct. 10. door open at 8.00 to breakfast/coffee Both days it will be possible to buy food and drinks in the racecenter.

Læs mere

Info og krav til grupper med motorkøjetøjer

Info og krav til grupper med motorkøjetøjer Info og krav til grupper med motorkøjetøjer (English version, see page 4) GENERELT - FOR ALLE TYPER KØRETØJER ØJER GODT MILJØ FOR ALLE Vi ønsker at paraden er en god oplevelse for alle deltagere og tilskuere,

Læs mere

MM537 Introduktion til Matematiske Metoder

MM537 Introduktion til Matematiske Metoder MM537 Introduktion til Matematiske Metoder Spørgsmål 1 (11%) Hvilke udsagn er sande? Husk, at symbolet betyder går op i. Which propositions are true? Recall that the symbol means divides. Svar 1.a: n Z:

Læs mere

DM547 Diskret Matematik

DM547 Diskret Matematik DM547 Diskret Matematik Spørgsmål 1 (11%) Hvilke udsagn er sande? Husk, at symbolet betyder går op i. Which propositions are true? Recall that the symbol means divides. Svar 1.a: n Z: 2n > n + 2 Svar 1.b:

Læs mere

Trolling Master Bornholm 2012

Trolling Master Bornholm 2012 Trolling Master Bornholm 1 (English version further down) Tak for denne gang Det var en fornøjelse især jo også fordi vejret var med os. Så heldig har vi aldrig været før. Vi skal evaluere 1, og I må meget

Læs mere

DM559/DM545 Linear and integer programming

DM559/DM545 Linear and integer programming Department of Mathematics and Computer Science University of Southern Denmark, Odense June 10, 2017 Marco Chiarandini DM559/DM545 Linear and integer programming Sheet 12, Spring 2017 [pdf format] The following

Læs mere

Vejledning til Sundhedsprocenten og Sundhedstjek

Vejledning til Sundhedsprocenten og Sundhedstjek English version below Vejledning til Sundhedsprocenten og Sundhedstjek Udfyld Sundhedsprocenten Sæt mål og lav en handlingsplan Book tid til Sundhedstjek Log ind på www.falckhealthcare.dk/novo Har du problemer

Læs mere

Nyhedsmail, december 2013 (scroll down for English version)

Nyhedsmail, december 2013 (scroll down for English version) Nyhedsmail, december 2013 (scroll down for English version) Kære Omdeler Julen venter rundt om hjørnet. Og netop julen er årsagen til, at NORDJYSKE Distributions mange omdelere har ekstra travlt med at

Læs mere

Forslag til implementering af ResearcherID og ORCID på SCIENCE

Forslag til implementering af ResearcherID og ORCID på SCIENCE SCIENCE Forskningsdokumentation Forslag til implementering af ResearcherID og ORCID på SCIENCE SFU 12.03.14 Forslag til implementering af ResearcherID og ORCID på SCIENCE Hvad er WoS s ResearcherID? Hvad

Læs mere