14 Pages

solve

Course: CSC 242, Fall 2009
School: Virgin Islands
Rating:
 
 
 
 
 

Word Count: 607

Document Preview

restart: # > This worksheet describes using solve and fsolve to solve equations. # Consider the solution of a single equation for a single variable. > solve(sin(x)+y^2-2,x); / 2 \ -arcsin\y - 2/ # Solve for y; you get a sequence of 2 solutions > sy:=solve(sin(x)+y^2-2,y); (1/2) (1/2)...

Register Now

Unformatted Document Excerpt

Coursehero >> Other International >> Virgin Islands >> CSC 242

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
restart: # > This worksheet describes using solve and fsolve to solve equations. # Consider the solution of a single equation for a single variable. > solve(sin(x)+y^2-2,x); / 2 \ -arcsin\y - 2/ # Solve for y; you get a sequence of 2 solutions > sy:=solve(sin(x)+y^2-2,y); (1/2) (1/2) sy := (2 - sin(x)) , -(2 - sin(x)) # Refer to the 2nd solution in the sequence using [2] > sy[2]; (1/2) -(2 - sin(x)) # Note that the solution implicitly assumes the expression for the # equation is set equal to zero. If we add a second independent # equation, we have > solve({sin(x)+y^2-2,y-ln(x)},{x,y}); # We don't get a solution, because there is no analytic answer to this # set of coupled equations; we can only determine a numerical answer, # e.g. using fsolve. > fsolve({sin(x)+y^2-2,y-ln(x)},{x,y}); {x = 0.2678513736, y = -1.317323028} # Is this the only solution? It would be interesting to plot the # functions to determine if that is the case. To do this we need the # plots package. > with(plots): # Warning, the name changecoords has been redefined # The plot command takes an equation as its first argument, the # variable range as its second (and optional third), and additional # plot options as the final argument. > implicitplot([sin(x)+y^2-2,y-ln(x)],x=0..10,y=-3..5,color=[red,blue],n > umpoints=2500); # So it looks like there's another solution around x=5; let's try to # find it. > fsolve({sin(x)+y^2-2,y-ln(x)},{x,y},x=4..6); {x = 5.342510434, y = 1.675695661} > fsolve({sin(x)+y^2-2,y-ln(x)},{x,y},x=0..1); {x = 0.2678513736, y = -1.317323028} # You can also predefine the equations used by solve or fsolve. > f:=sin(x)+y^2-2: > g:=y-ln(x); g := y - ln(x) > fsolve({f,g},{x,y},x=4..6); {y = 1.675695661, x = 5.342510434} # Notice that the order of x and y in the return set is different than # above; this underlines the fact that order is not preserved in sets. # The above can also use the functional operator specification of # functions. For example > x:='x':y:='y': > f:=(x,y)->sin(x)+y^2-2: > g:=(x,y)->y-ln(x); g := (x, y) -> y - ln(x) > fsolve({f(w,z),g(w,z)},{w,z},w=4..6); {w = 5.342510434, z = 1.675695661} # You cannot, however, omit the arguments of f and g: > fsolve({f,g},{x,y},x=4..6); # Error, (in fsolve) Case of systems of equations involving procedures # is not implemented yet # On the other hand, you can use a richer set of arguments > fsolve({f(x^2,y^2),g(x^2,y^2)},{x,y},x=2..3,y=1..2); {x = 2.311387123, y = 1.294486640} > fsolve({f(x^2,y^2),g(x^2,y^2)},{x,y},x=2..3,y=-2..1); {y = -1.294486640, x = 2.311387123} # Switching to a polynomial example, we encounter RootOf and allvalues: > f:=x->3*x^5-4*x-1; 5 f := x -> 3 x - 4 x - 1 > solve(f(x)); / 4 3 2 \ -1, RootOf\3 _Z - 3 _Z + 3 _Z - 3 _Z - 1, index = 1/, / 4 3 2 \ RootOf\3 _Z - 3 _Z + 3 _Z - 3 _Z - 1, index = 2/, / 4 3 2 \ RootOf\3 _Z - 3 _Z + 3 _Z - 3 _Z - 1, index = 3/, / 4 3 2 \ RootOf\3 _Z - 3 _Z + 3 _Z - 3 _Z - 1, index = 4/ > RootOf(f(x)); / 5 \ RootOf\3 _Z - 4 _Z - 1/ > allvalues(%); / | 1 1 (1/2) | -1, - + -- 3 | 4 12 | | \ (1/3) (2/3) \ // / (1/2)\ / (1/2)\ | || -5 \140 + 4 2089 / + 2 \140 + 4 2089 / - 48| 1 || -------------------------------------------------------------|^(1/2) + -- || (1/3) | 12 || / (1/2)\ | || \140 + 4 2089 / / \\ / (1/3) | / (1/2)\ | -30 \140 + 4 2089 / | | | \ (1/3) (2/3) \ / / (1/2)\ / (1/2)\ | | -5 \140 + 4 2089 / + 2 \140 + 4 2089 / - 48| | -------------------------------------------------------------|^(1/2) - 6 | (1/3) | | / (1/2)\ | | \140 + 4 2089 / / \ (1/3) (2/3) \ / (1/2)\ / (1/2)\ | -5 \140 + 4 2089 / + 2 \140 + 4 2089 / - 48| -------------------------------------------------------------|^(1/2) (1/3) | / (1/2)\ | \140 + 4 2089 / / (2/3) / (1/2)\ \140 + 4 2089 / / (1/3) (2/3) \ | / (1/2)\ / (1/2)\ | |-5 \140 + 4 2089 / + 2 \140 + 4 2089 / - 48| + 144 |-------------------------------------------------------------|^(1/2) | (1/3) | | / (1/2)\ | \ \140 + 4 2089 / / \// / (1/3)| | (1/3) | (1/2) / (1/2)\ | |/ (1/2)\ | + 90 3 \140 + 4 2089 / | |\140 + 4 2089 / | | | | | | | / \ \ (1/3) (2/3) \ \\ / (1/2)\ / (1/2)\ | || -5 \140 + 4 2089 / + 2 \140 + 4 2089 / - 48| || -------------------------------------------------------------|^(1/2)||^(1/2), (1/3) | || / (1/2)\ | || \140 + 4 2089 / / // / (1/3) (2/3) | / (1/2)\ / (1/2)\ 1 1 (1/2) |-5 \140 + 4 2089 / + 2 \140 + 4 2089 / - 48 - + -- 3 |------------------------------------------------------------- 4 12 | (1/3) | / (1/2)\ \ \140 + 4 2089 / \ // | || | 1 || |^(1/2) - -- || | 12 || | || / \\ / (1/3) | / (1/2)\ | -30 \140 + 4 2089 / | | | \ (1/3) (2/3) \ / / (1/2)\ / (1/2)\ | | -5 \140 + 4 2089 / + 2 \140 + 4 2089 / - 48| | -------------------------------------------------------------|^(1/2) - 6 | (1/3) | | / (1/2)\ | | \140 + 4 2089 / / \ (1/3) (2/3) \ / (1/2)\ / (1/2)\ | -5 \140 + 4 2089 / + 2 \140 + 4 2089 / - 48| -------------------------------------------------------------|^(1/2) (1/3) | / (1/2)\ | \140 + 4 2089 / / (2/3) / (1/2)\ \140 + 4 2089 / / (1/3) (2/3) \ | / (1/2)\ / (1/2)\ | |-5 \140 + 4 2089 / + 2 \140 + 4 2089 / - 48| + 144 |-------------------------------------------------------------|^(1/2) | (1/3) | | / (1/2)\ | \ \140 + 4 2089 / / \// / (1/3)| | (1/3) | (1/2) / (1/2)\ | |/ (1/2)\ | + 90 3 \140 + 4 2089 / | |\140 + 4 2089 / | | | | | | | / \ \ (1/3) (2/3) \ \\ / (1/2)\ / (1/2)\ | || -5 \140 + 4 2089 / + 2 \140 + 4 2089 / - 48| || -------------------------------------------------------------|^(1/2)||^(1/2), (1/3) | || / (1/2)\ | || \140 + 4 2089 / / // / (1/3) (2/3) | / (1/2)\ / (1/2)\ 1 1 (1/2) |-5 \140 + 4 2089 / + 2 \140 + 4 2089 / - 48 - - -- 3 |------------------------------------------------------------- 4 12 | (1/3) | / (1/2)\ \ \140 + 4 2089 / \ // / | || (1/3) | | 1 || / (1/2)\ | |^(1/2) + -- I ||30 \140 + 4 2089 / | | 12 || | | || | / \\ \ (1/3) (2/3) \ / / (1/2)\ / (1/2)\ | | -5 \140 + 4 2089 / + 2 \140 + 4 2089 / - 48| | -------------------------------------------------------------|^(1/2) + 6 | (1/3) | | / (1/2)\ | | \140 + 4 2089 / / \ (1/3) (2/3) \ / (1/2)\ / (1/2)\ | -5 \140 + 4 2089 / + 2 \140 + 4 2089 / - 48| -------------------------------------------------------------|^(1/2) (1/3) | / (1/2)\ | \140 + 4 2089 / / (2/3) / (1/2)\ \140 + 4 2089 / / (1/3) (2/3) \ | / (1/2)\ / (1/2)\ | |-5 \140 + 4 2089 / + 2 \140 + 4 2089 / - 48| - 144 |-------------------------------------------------------------|^(1/2) | (1/3) | | / (1/2)\ | \ \140 + 4 2089 / / \// / (1/3)| | (1/3) | (1/2) / (1/2)\ | |/ (1/2)\ | + 90 3 \140 + 4 2089 / | |\140 + 4 2089 / | | | | | | | / \ \ (1/3) (2/3) \ \\ / (1/2)\ / (1/2)\ | || -5 \140 + 4 2089 / + 2 \140 + 4 2089 / - 48| || -------------------------------------------------------------|^(1/2)||^(1/2), (1/3) | || / (1/2)\ | || \140 + 4 2089 / / // / ...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Uni. Westminster - CSCI - 1226
Code Design and FunctionsSections 4.1 & 5.1DesignThink ahead about your code s One hour of thinking about code can save you nine hours of messing about with it!s sWhen you have a bug understand what's wrong before trying to fix it saves hour
Virgin Islands - CSC - 370
Database Modifications A modification command does not return a result as a query does, but it changes the database in some way. There are three kinds of modifications:1. Insert a tuple or tuples. 2. Delete a tuple or tuples. 3. Update the value(s)
Virgin Islands - CSC - 421
Linear SeparatorsBankruptcy exampleR is the ratio of earnings to expenses L is the number of late payments on credit cards over the past year. We will continue using it, for a new hypothesis class, linear separators.1-Nearest Neighbor Hypothesis
Virgin Islands - CSC - 370
Notes.-1. To untar the posted file do:gtar zxvf projectFALL06.gtar2. You will find there an example Java program (Movie.java)for populating the movie table using the mains243.xml file.3. The create table for the movies is in movies.sql.4.
Virgin Islands - LAW - 110
Legal Memo WritingFactors in Excellent WorkTwo aspects of memos. Substantive content of memo (the law)Accurate and current Thorough Clear Structure and style (presentation)Well organized use headings! Internally consistent Easy to
Uni. Westminster - CSCI - 1227
Working on the WebSections 10.4, 11.1 & 11.2OverviewsWeb basics a bit of historyReading from a file on the Web s HTML basics s Generating HTML files for your computer s Getting lists from the users while loopsComputer NetworkssIn ear
Virgin Islands - LAW - 110
FOR EDUCATIONAL USE ONLY 1996 CarswellBC 1411Catherwood (Guardian ad litem of) v. Heinrichs Scott Catherwood, an infant, by his Guardian Ad Litem, Kathryn Cooney and Kathryn Cooney (Plaintiffs) and Cliff Heinrichs, Larry Yakimovotich, Gail Ottesen
Virgin Islands - LAW - 110
Note: This legal memo was written by a UVIC law student who has generously agreed that it be published on the Law 110 website as a sample for first year students. Keep in mind that it reflects this particular author's writing style and chosen approac
Virgin Islands - LAW - 110
Sample Memo LRW Law 110 CAUTION: Acceptable styles and format of citation have changed since 2001. Do not rely on this memo for citation. Instead, consult the 6th edition of the McGill Guide.CURRAN & CHEN VICTORIA, BC MEMORANDUM To: Senior Partner
Virgin Islands - LAW - 110
Law 110 - Legal Research & Writing - Law 110Exercise: Opinion Letter Writing Fall 2005Facts On June 20, 2000 an oil tanker (the Star Light) arrived at Burrard Shipyards Ltd. for repairs. While employees of the shipyard were raising the tanker onto
Virgin Islands - LAW - 110
Law 110 - Legal Research and WritingLEGAL ANALYSIS EXERCISE InstructionsSept 26 to Sept 30, 2005This analysis exercise is for in-class discussion the week of September 26 to September 30, 2005. Please read the fact pattern and the case summaries
Virgin Islands - LAW - 110
LEGAL RESEARCH & WRITING - LAW 110University of Victoria Faculty of Law 2008 - 09Instructor: Email: Office: Office Hours: Phone: Class Time: Location: Unit Value:Tim Richards trichard@uvic.ca Room 230 You may drop by my office or schedule an app
Virgin Islands - LAW - 301
Administrative LawFall 2006Review Terms and Cases (Please note that this is NOT an exhaustive list)Examples of concepts and terms with which you should be familiar: The branches of government (and relevance to Administrative Law) Rule of law D
Virgin Islands - ECON - 515
Problem Set #2 Economics 515 University of Victoria - Spring 2007 Prof. H.J. Schuetze Due Date: Thursday February 8th in Class I. Problems 1. Suppose that a profit-maximizing firm in perfectly competitive markets uses labour as its only input in prod
Virgin Islands - PSYC - 415
Clearihue A311Next class and all subsequent classes.Thanks to: Martin Arguin, Jeff Bowers and Daniel Fiset.Thes trang c eo Mo ie e as f ns ur Os ar C. cA century ago, on the 27th February 1892, Dejerine presented his analysis of a case of pu
East Los Angeles College - CS - 223
BMW 318 40GBP 60GBP 4BMW 320 50GBP 70GBP 2BMW 525 80GBP 95GBP 2AUDI A2 30GBP 50GBP 4AUDI A3 35GBP 55GBP 3AUDI A4 45GBP 65GBP 4VW Golf1.6 30GBP
Uni. Westminster - CSCI - 1226
CSC 226.1 MidtermCSC 226.1 Midterm ExamTuesday, June 9, 1998 Name: _ Student #: _ General Instructions Read and follow all directions carefully. When writing programs or program segments, use the conventions used in the text for identifiers and in
East Los Angeles College - CS - 223
Some Important Arrangements For ISE Team ProjectCorrect Group Information Please check your ISE project group details in the CS223 web site. Group Leader All communications on the project should be through your Group Leader. Group Number For orga
East Los Angeles College - CS - 223
Today's Lecture is in 3 Parts Part 1: The Project Doron Part 2: Going through the skipped over slides of last week's lecture Ananda Part 3: Tools AnandaCG152 Introduction: slide 1 CS223 The Project:Lecture 5 - The Project Aims of this
East Los Angeles College - CS - 223
Analysis(BD Ch. 5)CS223 Lecture 7 Ananda AmatyaReminder: Surgery Sessions (Weeks 6-10) Mon 2 - 4 pm in C1.01 Fri 9 - 11 am in C1.04Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java L7 (Adapted F
East Los Angeles College - CS - 223
Requirements(BD Ch. 4)CS223 Lecture 6 Ananda Amatya Reminder: Surgery Sessions Mon 2-4pm, C1.01 Fri 9-11am, C1.04Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java L6 (Adapted For ISE 2005/6 By An
East Los Angeles College - CS - 223
CS223 Introduction to Software EngineeringDoron Peled, Roger Packwood, Arshad Jhumka, Ananda Amatya, Mike Joy The University of Warwick 1998-2005CG152 Introduction: slide 1 CS223Lecture 1 - Objectives To introduce the staff To explain the str
East Los Angeles College - CS - 223
C S ase tudy - Are naArshad Jhum ka De of Com r S nce pt pute cie Unive rsity of Warwick05/15/09 Arshad Jhumka - ISE 05/06Purposeof Le cturease na gge C study Are "Brue and Dutoit" book. rstand them ste and act as a guide ain ps, . Unde ad
East Los Angeles College - CS - 223
System Design: addressing design goalsBook: chapter 7OverviewSystem Design I (previous lecture) 0. Overview of System Design 1. Design Goals 2. Subsystem Decomposition System Design II 3. Concurrency 4. Hardware/Software Mapping 5. Persistent Da
Virgin Islands - ECON - 104
PART 7Macroeconomic OverviewA First Look at Macroeconomics19CHAPTERCopyright 2006 Pearson Education CanadaObjectivesAfter studying this chapter, you will able to Describe the origins and issues of macroeconomics Describe the trends and
Virgin Islands - CSC - 595
Hand this in by the end of term please. You may attend any research seminars at UVic or other institutions (e.g. conferences) to count for this aspect of the course. For each talk attended, briefly summarize the talk and list at least one positive
Laurentian - MGT - 200301
Examples of secondary research05/15/09Marketing Research1Basil (1990)Study of people's use of news media Used "Roper data" Found: 05/15/09"switch" from newspapers to radio to TV cohort effects some equivalence between electronic medi
Virgin Islands - SENG - 365
A Software Requirements Specificationfor "Captain's Log"Version 1.0September 24, 2003presented by:Page i of 21Table of ContentsRevision History.Error: Reference source not found Table of Contents..Error: Reference source not found 1. Intro
East Los Angeles College - CS - 319
The SQL Query LanguageLogical and Algebraic Features Relationship to Relational Theory05/15/091CS319 Theory of DatabasesThe Query Language SQL 1Developed at IBM San Jose Research Laboratories. Originally called Sequel. ANSI standard establ
Uni. Westminster - CS - 1047
Inheritance Second important principle in object oriented programming You can derive new data types from existing (base) data types Derived data types are also known as the children of the base (parent) type We are going to limit the programmi
Uni. Westminster - CS - 1047
World Wide Web One of the primary concepts responsible for the proliferation of the internet Labs with a lot of Pcs running DOS/Windows 3.1 A few mini computers running UNIX eagle is the mini computer used by the stu
Allan Hancock College - BAA - 200731
Building Amendment (Plumbing) Act 2007 No. 31 of 2007 table of provisionsSection Page 1 Purposes 1 2 Commencement 2 3 New definition inserted 2 4 Restr
Virgin Islands - LAW - 315
Law 315 Business Associations Fall 20021 of 3 Professor Gillen Code Name _UNIVERSITY OF VICTORIA FACULTY OF LAW LAW 315 BUSINESS ASSOCIATIONS FINAL EXAMINATION, FALL 2002 PART I CLOSED BOOK DATE: TIME: PLACE: Wednesday, December 18, 2002 9:00
Virgin Islands - LAW - 313
LAW 313 SECURITIES REGULATION FINAL EXAM SPRING 2005 CLOSED BOOK PART MARKING GUIDE QUESTION ONE [6 marks]: Various claims have been made about the benefits of continuous disclosure. Competing concerns have also been identified that suggest limits
Virgin Islands - LAW - 313
1 LAW 313 - SECURITIES REGULATION FINAL EXAMINATION OPEN-BOOK PART SPRING, 2005 MARKING GUIDE QUESTION ONE [40 marks; suggested maximum time of 1 hour and 20 minutes]: (a) Suppose Scand opts to take shares of Dundin. Explain why Dundin would have t
Virgin Islands - LAW - 329
Environmental Bills of RightsWhat are the weaknesses of CELP (Cdn Env Law & Policy) observed to date? Why optimism about efficacy of law/rights outside the legal fraternity; & pessimism within? How high a priority should rights-reform be in terms of
Virgin Islands - LAW - 329
Marketbased Approaches for Environmental ProtectionProf Tollefson Law 329 November 27, 2007 Topics covered Why the rise of market approaches? Concepts & terminology (market failure, public goods, externalities, social and private costs)
Virgin Islands - LAW - 329
Faculty of Law University of VictoriaLAW 329 ENVIRONMENTAL LAW Spring 2006 ExaminationDate: Time: Room:xxx 9:00 a.m. 12:00 noon xxx Professor Chris Tollefson
Virgin Islands - LAW - 102
Law 102 Review Session Questions: November 5, 2007Question 1: Constable Quick is told by a dispatcher that a street person (known to police as "Joe") is unwittingly "holding" monies stolen in a taxicab robbery. The information provided to Quick is t
Virgin Islands - LAW - 102
Answers to Example Offences Professor Tollefson Set out below are sample answers to the question "Describe the mens rea, if any, for the following offences." The offences can be found in a separate document. Please try to come up with your own answer
Virgin Islands - LAW - 102
The Defences of Necessity and Duress Professor Tollefson Law 102 Spring 2007 I. Necessity A. Overview A common law defence only recently recognized in Canadian law: see Morgentaler (SCC, 1975), Perka (SCC, 1984) and Latimer (SCC, 2001) Prevailing vi
Virgin Islands - LAW - 102
OVERVIEW OF MENS REA COMPONENT LAW 102 CRIMINAL LAW PROCESS PROF. TOLLEFSON JANUARY 24, 2008A. INTRODUCTION TO MENS REA B. LEVELS OF FAULT I. Full Mens Rea: (Subjective Test) Intent, knowledge, recklessness, wilful blindness II. Criminal negli
Virgin Islands - LAW - 102
Insanity/NCRMD/UST Law 102 Criminal Law Process 2008 Professor Tollefson Lecture OutlineHistory and Overview Interplay between s. 16 and common law Defn of "disease of mind": see s. 2 Code and caselaw Evidentiary requirements of s. 16: next class
Virgin Islands - LAW - 102
CRIMINAL LAW PROCESSVoluntary Intoxication Defence: A Brief Overview1. Legal Authority Common law defence [s. 8(3) Code] (Partial alteration of common law defence in 1995 by enactment of s. 33.1 of the Code.) 2. Development of the voluntary int
Virgin Islands - LAW - 102
CRIMINAL LAW PROCESSProfessor Chris Tollefson COURSE OUTLINE Spring 2008This outline is a guide only, and may be adjusted once the pace at which we go through these readings has been established. "RHT" means Roach, Healy, and Trotter, Criminal Law
Virgin Islands - LAW - 102
CRIMINAL LAW PROCESS Professor Tollefson Determining the Mens Rea, if any, for an Offence: Overview 1. Each offence will be set out in a legislative provision, whether that be the Criminal Code or another federal or provincial statute (or in delegate
Virgin Islands - LAW - 102
Case Name: R. v. Osmond Between Regina, Respondent, and George Roswell Osmond, Appellant [2007] B.C.J. No. 2132 2007 BCCA 470 Docket: CA033623 British Columbia Court of Appeal Victoria, British Columbia J.E. Prowse, I.T. Donald and E.C. Chiasson JJ.A
East Los Angeles College - CS - 411
CS 411: Dynamic Web-Based SystemsDr. Alexandra I. Cristea http:/www.dcs.warwick.ac.uk/~acristea/Lecturers Alexandra I. Cristea Guest lecturers Seminar lecturers2Schedule Usual: Wed 10-11am, CS104 Thu 4-6pm, CS104 Exceptions: Others: T
East Los Angeles College - CS - 411
Privacy-enhanced Web PersonalisationR. Falconer, B. Hallett, A. Hazelden, V. MiloshevskiGroup CS4114026, equal contributionsContents Introduction o Overview of the material Individuals' Privacy Concerns Factors Fostering Personal Information D
East Los Angeles College - CS - 411
RDFDr. Alexandra I. Cristea http:/www.dcs.warwick.ac.uk/~acristea/RDF Definition The Resource Description Framework (RDF) is a W3C standard for describing resources on the Web. RDF is a framework for describing Web resources, e.g., title, autho
East Los Angeles College - CS - 411
Explicit Intelligence in Adaptive Hypermedia: Generic Adaptation LanguagesAlexandra CristeaLAOS ModelAdaptation granularity lowest level: direct adaptation techniques: adaptive navigation support & adaptive presentation (Brusilovsky 1996), imp
East Los Angeles College - CS - 411
UMDr. Alexandra I. Cristea http:/www.dcs.warwick.ac.uk/~acristea/Read read chapters 'The Adaptive Web' : Generic User Modeling Systems, User Models for Adaptive Hypermedia and Adaptive Educational Systems User Profiles for Personalized Informa
East Los Angeles College - CS - 411
Semantic WebDr. Alexandra I. Cristea http:/www.dcs.warwick.ac.uk/~acristea/Shared ontologies help to exchange data and meaning between web-based servicesThe Semantic Web(Image by Jim Hendler)2Wine Example ScenarioTell me what wines I shoul
Virgin Islands - LAW - 342
CitizenshipHow to get it; how to lose it; how to get it back.05/15/091IntroductionCitizenship Act 1977 is the primary source of law Additional Sources: Citizenship Regulations; Earlier Acts; Constitution Act 1982; S.19(1) of the IRPA
Virgin Islands - LAW - 342
Family SponsorshipObjective: s.3 IRPA to see that families are reunited in Canada:Processing Family members are given high operational priority in visa office For spouses, partners and children: a six month processing aim; Parents and grandpar
East Los Angeles College - CS - 411
OWLDr. Alexandra I. Cristea http:/www.dcs.warwick.ac.uk/~acristea/What is OWL? OWL became a W3C (World Wide Web Consortium) Recommendation in February 2004. OWL stands for Web Ontology Language OWL is built on top of RDF OWL is for proces
Virgin Islands - LAW - 342
Inadmissibility Part 2Criminality - Burdens. Criminality - Burdens. Remember s.33 IRPA "Reasonable Grounds to Believe" But note s.36(3) (d) The determination of acts committed outside Canada by Permanent Resident must be on balance of probabili
Virgin Islands - LAW - 342
The Economic ClassCommentary Worswick (295) Immigrants are not doing so well now as they did in earlier years. There should be no increase in numbers until they start to do better More points needed for education credentials recognized by employe
Virgin Islands - LAW - 342
Decisions and Decision MakersThe Legislative Framework Decisions Made Outside Canada Migration Control Officer See CBSA Fact Sheet 030eng.html http:/cbsaasfc.gc.ca/media/factsfaits/ Migration Integrity OfficersMigration Integ
Virgin Islands - LAW - 342
Decisions and Decision Makers (Outside Canada)The Legislative FrameworkThree Categories of Individual Foreign National, Permanent Resident and Canadian Citizen. The first two are defined in IRPA, the third in the Regs. (definitions are unhe
East Los Angeles College - CS - 411
Coursework 1: group account creation in MOT and simple usage steps (10 marks/100; deadline: Friday 10th of October, 2008, 12:00am).Simple steps as specified in:http:/www.dcs.warwick.ac.uk/~acristea/courses/CS411/2008/MOT-new.pptandhttp:/www.