Browse Results

Showing 18,501 through 18,525 of 28,042 results

ORIGO Stepping Stones, Core Mathematics [Grade 4], Student Journal

by James Burnett Calvin Irons Debi DePaul

NIMAC-sourced textbook

ORIGO Stepping Stones, Core Mathematics [Grade K], Student Journal

by James Burnett Peter Stowasser Rosemary Irons

NIMAC-sourced textbook

ORIGO Stepping Stones, Programa de matemáticas [Grade 2], Libro de práctica: Spanish Edition

by James Burnett Calvin Irons Peter Stowasser

NIMAC-sourced textbook

ORIGO Stepping Stones, Programa de matemáticas [Grade 2], Libro del alumno: Spanish Edition

by James Burnett Calvin Irons Peter Stowasser

NIMAC-sourced textbook

ORIGO Stepping Stones, Programa de matemáticas [Grade 3], Libro de práctica: Spanish Edition

by James Burnett Calvin Irons Debi DePaul

NIMAC-sourced textbook

ORIGO Stepping Stones, Programa de matemáticas [Grade 3], Libro del alumno: Spanish Edition

by James Burnett Calvin Irons Debi DePaul

NIMAC-sourced textbook

ORIGO Stepping Stones, Programa de matemáticas [Grade 4], Libro de práctica: Spanish Edition

by James Burnett Calvin Irons Peter Stowasser

NIMAC-sourced textbook

ORIGO Stepping Stones, Programa de matemáticas [Grade 4], Libro del alumno: Spanish Edition

by James Burnett Calvin Irons Debi DePaul

NIMAC-sourced textbook

ORIGO Stepping Stones, Programa de matemáticas [Grade 5], Libro de práctica: Spanish Edition

by James Burnett Calvin Irons Debi DePaul

NIMAC-sourced textbook

ORIGO Stepping Stones, Programa de matemáticas [Grade 5], Libro del alumno: Spanish Edition

by James Burnett Calvin Irons Debi DePaul

NIMAC-sourced textbook

ORIGO Stepping Stones, Programa de matemáticas [Grade K], Libro del alumno: Spanish Edition

by James Burnett Peter Stowasser Rosemary Irons

NIMAC-sourced textbook

OWL: 13th International Workshop, OWLED 2016, and 5th International Workshop, ORE 2016, Bologna, Italy, November 20, 2016, Revised Selected Papers (Lecture Notes in Computer Science #10161)

by Mauro Dragoni María Poveda-Villalón Ernesto Jimenez-Ruiz

This book constitutes the thoroughly refereed conference proceedings of the 13International Workshop on OWL: Experiences and Directions, OWLED 2016, and the 5th International Workshop on OWL: Reasoner Evaluation, ORE 2016, held in Bologna, Italy in November 20, 2016. The Workshops were co-located with the 20th International Conference on Knowledge Engineering and Knowledge Management, EKAW 2016. The 11 revised full papers, 3 short paper and one invited talk presented were carefully reviewed and selected from 27 initial submissions. The papers are trying to bridge the gap between ontology engineering practices and software engineering with the aim of describing reuse methods employed throughout the ontology development cycle; modeling/terminological decisions, alignment and comparison between ontologies, how ontologies are stored, versioned, distributed and consumed over the Web.

Object Oriented Data Analysis (Chapman & Hall/CRC Monographs on Statistics and Applied Probability)

by Ian L. Dryden J. S. Marron

Object Oriented Data Analysis is a framework that facilitates inter-disciplinary research through new terminology for discussing the often many possible approaches to the analysis of complex data. Such data are naturally arising in a wide variety of areas. This book aims to provide ways of thinking that enable the making of sensible choices. The main points are illustrated with many real data examples, based on the authors' personal experiences, which have motivated the invention of a wide array of analytic methods. While the mathematics go far beyond the usual in statistics (including differential geometry and even topology), the book is aimed at accessibility by graduate students. There is deliberate focus on ideas over mathematical formulas. J. S. Marron is the Amos Hawley Distinguished Professor of Statistics, Professor of Biostatistics, Adjunct Professor of Computer Science, Faculty Member of the Bioinformatics and Computational Biology Curriculum and Research Member of the Lineberger Cancer Center and the Computational Medicine Program, at the University of North Carolina, Chapel Hill. Ian L. Dryden is a Professor in the Department of Mathematics and Statistics at Florida International University in Miami, has served as Head of School of Mathematical Sciences at the University of Nottingham, and is joint author of the acclaimed book Statistical Shape Analysis.

Object-Orientation, Abstraction, and Data Structures Using Scala (Chapman & Hall/CRC Textbooks in Computing)

by Lisa L. Lacher Mark C. Lewis

Mark Lewis’ Introduction to the Art of Programming Using Scala was the first textbook to use Scala for introductory CS courses. Fully revised and expanded, the new edition of this popular text has been divided into two books. Object-Orientation, Abstraction, and Data Structures Using Scala, Second Edition is intended to be used as a textbook for a second or third semester course in Computer Science. The Scala programming language provides powerful constructs for expressing both object orientation and abstraction. This book provides students with these tools of object orientation to help them structure solutions to larger, more complex problems, and to expand on their knowledge of abstraction so that they can make their code more powerful and flexible. The book also illustrates key concepts through the creation of data structures, showing how data structures can be written, and the strengths and weaknesses of each one. Libraries that provide the functionality needed to do real programming are also explored in the text, including GUIs, multithreading, and networking. The book is filled with end-of-chapter projects and exercises, and the authors have also posted a number of different supplements on the book website. Video lectures for each chapter in the book are also available on YouTube. The videos show construction of code from the ground up and this type of "live coding" is invaluable for learning to program, as it allows students into the mind of a more experienced programmer, where they can see the thought processes associated with the development of the code. About the Authors Mark Lewis is an Associate Professor at Trinity University. He teaches a number of different courses, spanning from first semester introductory courses to advanced seminars. His research interests included simulations and modeling, programming languages, and numerical modeling of rings around planets with nearby moons.? Lisa Lacher is an Assistant Professor at the University of Houston, Clear Lake with over 25 years of professional software development experience. She teaches a number of different courses spanning from first semester introductory courses to graduate level courses. Her research interests include Computer Science Education, Agile Software Development, Human Computer Interaction and Usability Engineering, as well as Measurement and Empirical Software Engineering.

Object-Oriented Design Choices

by Adair Dingle

Do modern programming languages, IDEs, and libraries make coding easy? Maybe, but coding is not design. Large-scale or expensive apps clearly require evaluation of design choices. Still, software design directly impacts code reuse and longevity even for small-scale apps with limited overhead. This text evaluates and contrasts common object-oriented designs. A given problem may have many solutions. A developer may employ different design techniques – composition, inheritance, dependency injection, delegation, etc. – to solve a particular problem. A skilled developer can determine the costs and benefits of different design responses, even amid competing concerns. A responsible developer documents design choices as a contract with the client, delineating external and internal responsibilities. To promote effective software design, this book examines contractual, object-oriented designs for immediate and sustained use as well as code reuse. The intent of identifying design variants is to recognize and manage conflicting goals such as short versus long-term utility, stability versus flexibility, and storage versus computation. Many examples are given to evaluate and contrast different solutions and to compare C# and C++ effects. No one has a crystal ball; however, deliberate design promotes software longevity. With the prominence of legacy OO code, a clear understanding of different object-oriented designs is essential. Design questions abound. Is code reuse better with inheritance or composition? Should composition rely on complete encapsulation? Design choices impact flexibility, efficiency, stability, longevity, and reuse, yet compilers do not enforce design and syntax does not necessarily illustrate design. Through deliberate design, or redesign when refactoring, developers construct sustainable, efficient code.

Objective Algorithms for Integrating Hypoelastic Constitutive Relations Based on Corotational Stress Rates (SpringerBriefs in Applied Sciences and Technology)

by Sergey Korobeynikov Alexey Larichkin

This book provides readers with a deep understanding of the use of objective algorithms for integration of constitutive relations (CRs) for Hooke-like hypoelasticity based on the use of corotational stress rates. The purpose of objective algorithms is to perform the step-by-step integration of CRs using fairly large time steps that provide high accuracy of this integration in combination with the exact reproduction of superimposed rigid body motions. Since Hooke-like hypoelasticity is included as a component in CRs for elastic-inelastic materials (e.g., in CRs for elastic-plastic materials), the scope of these algorithms is not limited to hypoelastic materials, but extends to many other materials subjected to large deformations. The authors performed a comparative analysis of the performance of most currently available objective algorithms, provided some recommendations for improving the existing formulations of these algorithms, and presented new formulations of the so-called absolutely objective algorithms. The proposed book will be useful for beginner researchers in the development of economical methods for integrating elastic-inelastic CRs, as well as for experienced researchers, by providing a compact overview of existing objective algorithms and new formulations of these algorithms. The book will also be useful for developers of computer codes for implementing objective algorithms in FE systems. In addition, this book will also be useful for users of commercial FE codes, since often these codes are so-called black boxes and this book shows how to test accuracy of the algorithms of these codes for integrating elastic-inelastic CRs in modeling large rotations superimposed on the uniform deformation of any sample.

Objectivity, Realism, and Proof

by Francesca Boccuni Andrea Sereni

This volume covers a wide range of topics in the most recent debates in the philosophy of mathematics, and is dedicated to how semantic, epistemological, ontological and logical issues interact in the attempt to give a satisfactory picture of mathematical knowledge. The essays collected here explore the semantic and epistemic problems raised by different kinds of mathematical objects, by their characterization in terms of axiomatic theories, and by the objectivity of both pure and applied mathematics. They investigate controversial aspects of contemporary theories such as neo-logicist abstractionism, structuralism, or multiversism about sets, by discussing different conceptions of mathematical realism and rival relativistic views on the mathematical universe. They consider fundamental philosophical notions such as set, cardinal number, truth, ground, finiteness and infinity, examining how their informal conceptions can best be captured in formal theories. The philosophy of mathematics is an extremely lively field of inquiry, with extensive reaches in disciplines such as logic and philosophy of logic, semantics, ontology, epistemology, cognitive sciences, as well as history and philosophy of mathematics and science. By bringing together well-known scholars and younger researchers, the essays in this collection - prompted by the meetings of the Italian Network for the Philosophy of Mathematics (FilMat) - show how much valuable research is currently being pursued in this area, and how many roads ahead are still open for promising solutions to long-standing philosophical concerns. Promoted by the Italian Network for the Philosophy of Mathematics - FilMat

Objects, Structures, and Logics: FilMat Studies in the Philosophy of Mathematics (Boston Studies in the Philosophy and History of Science #339)

by Claudio Ternullo Gianluigi Oliveri Stefano Boscolo

This edited collection casts light on central issues within contemporary philosophy of mathematics such as the realism/anti-realism dispute; the relationship between logic and metaphysics; and the question of whether mathematics is a science of objects or structures.The discussions offered in the papers involve an in-depth investigation of, among other things, the notions of mathematical truth, proof, and grounding; and, often, a special emphasis is placed on considerations relating to mathematical practice. A distinguishing feature of the book is the multicultural nature of the community that has produced it. Philosophers, logicians, and mathematicians have all contributed high-quality articles which will prove valuable to researchers and students alike.

Oblique Derivative Problems for Elliptic Equations in Conical Domains (Frontiers in Mathematics)

by Mikhail Borsuk

The aim of our book is the investigation of the behavior of strong and weak solutions to the regular oblique derivative problems for second order elliptic equations, linear and quasi-linear, in the neighborhood of the boundary singularities. The main goal is to establish the precise exponent of the solution decrease rate and under the best possible conditions. The question on the behavior of solutions of elliptic boundary value problems near boundary singularities is of great importance for its many applications, e.g., in hydrodynamics, aerodynamics, fracture mechanics, in the geodesy etc. Only few works are devoted to the regular oblique derivative problems for second order elliptic equations in non-smooth domains. All results are given with complete proofs. The monograph will be of interest to graduate students and specialists in elliptic boundary value problems and their applications.

Observability and Mathematics: Fluid Mechanics, Solutions of Navier-Stokes Equations, and Modeling (Advances in Applied Mathematics)

by Boris Khots

The author approaches an old classic problem - the existence of solutions of Navier-Stokes equations. The main objective is to model and derive of equation of continuity, Euler equation of fluid motion, energy flux equation, Navier-Stokes equations from the observer point of view and solve classic problem for this interpretation of fluid motion laws. If we have a piece of metal or a volume of liquid, the idea impresses itself upon us that it is divisible without limit, that any part of it, however small, would again have the same properties. But, wherever the methods of research in the physics of matter were refined sufficiently, limits to divisibility were reached that are not due to the inadequacy of our experiments but to the nature of the subject matter. Observability in mathematics were developed by the author based on denial of infinity idea. He introduces observers into arithmetic, and arithmetic becomes dependent on observers. And after that the basic mathematical parts also become dependent on observers. This approach permits to reconsider the fluid motion laws, analyze them and get solutions of classic problems. Table of Contents 1. Introduction.2. Observability and Arithmetic.3. Observability and Vector Algebra.4. Observability and Mathematical Analysis (Calculus).5. Classic Fluid Mechanics equations and Observability.6. Observability and Thermodynamical equations.7. Observability and equation of continuity.8. Observability and Euler equation of motion of the fluid.9. Observability and energy flux and moment flux equations.10. Observability and incompressible fluids.11. Observability and Navier-Stokes equations.12. Observability and Relativistic Fluid Mechanics.13. Appendix: Review of publications of the Mathematics with Observers.14. Glossary.BibliographyIndex Biography Boris Khots, DrSci, lives in Iowa, USA, Independent Researcher. Alma Mater - Moscow State Lomonosov University, Department of Mathematics and Mechanics (mech-math). Creator of Observer’s Mathematics. Participant of more than 30 Mathematical international congresses, conferences. In particular, participated with presentation at International Congresses of Mathematicians on 1998 (Germany), 2002 (China), 2006 (Spain), 2010 (India), 2014 (South Korea). More than 150 mathematical books and papers.

Observation and Experiment: An Introduction to Causal Inference

by Paul R. Rosenbaum

In the face of conflicting claims about some treatments, behaviors, and policies, the question arises: What is the most scientifically rigorous way to draw conclusions about cause and effect in the study of humans? In this introduction to causal inference, Paul Rosenbaum explains key concepts and methods through real-world examples.

Observed Confidence Levels: Theory and Application

by Alan M. Polansky

Illustrating a simple, novel method for solving an array of statistical problems, Observed Confidence Levels: Theory and Application describes the basic development of observed confidence levels, a methodology that can be applied to a variety of common multiple testing problems in statistical inference. It focuses on the modern nonparametric

Observer Design for Nonlinear Dynamical Systems: Differential Geometric Methods (Lecture Notes in Control and Information Sciences #487)

by Gang Zheng Driss Boutat

This book presents a differential geometric method for designing nonlinear observers for multiple types of nonlinear systems, including single and multiple outputs, fully and partially observable systems, and regular and singular dynamical systems. It is an exposition of achievements in nonlinear observer normal forms. The book begins by discussing linear systems, introducing the concept of observability and observer design, and then explains the difficulty of those problems for nonlinear systems. After providing foundational information on the differential geometric method, the text shows how to use the method to address observer design problems. It presents methods for a variety of systems. The authors employ worked examples to illustrate the ideas presented. Observer Design for Nonlinear Dynamical Systems will be of interest to researchers, graduate students, and industrial professionals working with control of mechanical and dynamical systems.

Occupational Therapy In Community And Population Health Practice

by Marjorie E. Scaffa S. Maggie Reitz

The New Edition reflects the convergence of community and population health practice with expanded content on health promotion, well-being, and wellness. Drs. Scaffa and Reitz present the theories underpinning occupational therapy practice in community and population health. Then, the authors provide practical guidance in program needs assessment, program development, and program evaluation. Both new practitioners and students will find practice-applicable coverage, including expanded case examples, specific strategies for working in the community, and guidance on securing funding for community and population health programs.

Ocean Counting

by Brian Skerry National Geographic Kids Staff Janet Lawler

Throughout our world's oceans live wild animals that swim, leap, and dive through the pages of this charming title. The photography in this book presents young readers with a foundation for learning basic counting skills while discovering some magnificent ocean animals. The marine life captured on each page portray familiar favorites along with a few lesser-known, but still amazing, animals. Lyrical text about each creature is both lively and thought-provoking. "Did You Know" facts accompany each spread to add both fun and fascinating tidbits about each creature. Fact boxes in the back of the book include information about the animals' homes, sizes, diets, predators, and babies. The book ends with an interactive map and a brief and inspirational note from National Geographic photographer Brian Skerry. A glossary helps kids expand their vocabulary, and a list of books and websites for further reading help jump-start more discovery.

Refine Search

Showing 18,501 through 18,525 of 28,042 results