Notes, summaries, assignments, exams, and problems for Other courses

Sort by
Subject
Level

Cognition, Perception, and Knowledge: Understanding the Intertwined Processes

Classified in Psychology and Sociology

Written on in English with a size of 4.94 KB

Cognition, Perception, and Knowledge

  • Cognition: The processes a system uses to acquire, store, represent, use, and respond to signals/information from the body and environment (e.g., body signals, environmental stimuli).

  • Cognition: The mental operations that support people’s acquisition and use of knowledge.

  • Conscious Cognition: Thought processes we are aware of, such as reasoning, decision-making, and problem-solving.

  • Non-conscious Cognition: Mental processes that occur automatically, without conscious awareness, such as perception, memory retrieval, and habitual actions.

  • All aspects of cognition are... INTERTWINED

  • Top-down Processing: Processes (i.e., knowledge-based; e.g., thought and motivations) influence what we detect, attend to, and perceive!

... Continue reading "Cognition, Perception, and Knowledge: Understanding the Intertwined Processes" »

English Language Skills: Grammar, Vocabulary & Usage

Classified in English

Written on in English with a size of 4.68 KB

Ethical Language & Fair Conduct

Complete the sentences using appropriate words related to fairness and honesty:

  1. Calling names to your classmates is not an acceptable thing to do.
  2. In fact, doing so is not justifiable. Every person has their own name.
  3. Foreigners are people like you and me. Try not to have any prejudice against them.
  4. It's unethical to be sharing others' private videos on the internet without permission.
  5. I can't believe you paid that much for the concert. That's not reasonable at all.

Legal Terminology & Courtroom Phrases

Match the following definitions with their correct technical legal phrases:

  • To give information in a court: To give evidence
  • To ask to go to a higher court for another trial: To appeal
  • The lawyer who tries to prove
... Continue reading "English Language Skills: Grammar, Vocabulary & Usage" »

Caesar Cipher Cryptanalysis & Frequency Analysis

Classified in Mathematics

Written on in English with a size of 6.56 KB

Caesar Cipher: Formal Representation

Plain alphabet: P = {sequence of plaintext letters}. Key: k ∈ {i | 0 ≤ i ≤ 25}. If k = 25, the shift maps a → z, b → a, and so on. Encryption: E(p) = (p + k) mod 26. Decryption: D(c) = (26 + c − k) mod 26.

Attacking the Caesar Cipher

Common methods to solve or attack a Caesar (shift) cipher include:

  1. Brute force: Try all possible keys (0–25) and inspect the results.
  2. Statistical (frequency) analysis: Use letter frequency distributions of the language to infer likely mappings.

Frequency Analysis: Basic Idea

Certain letters appear more frequently than others in a given language. By comparing ciphertext letter frequencies to natural language frequencies, you can match ciphertext characters to likely plaintext

... Continue reading "Caesar Cipher Cryptanalysis & Frequency Analysis" »

Mastering Professional Selling: Roles, Strategies, and Ethics

Classified in Economy

Written on in English with a size of 967.62 KB

Chapter 1: Selling Titles

  1. Account Executive
  2. Account Representative
  3. Account Manager
  4. Relationship Manager
  5. District Representative
  6. Marketing Partner
  7. Regional Accounts Manager
  8. Key Accounts Manager
  9. Strategic Accounts Manager
  10. Sales Consultant
  11. Business Development Representative
  12. Sales Associate
  13. Marketing Representative
  14. Territory Manager
  15. Channel Partner
  16. National Accounts Manager
  17. Global Accounts Manager
  18. Accounts Development Representative

Sales Career Opportunities

Service Companies

Service companies provide career opportunities in a variety of settings:

  1. Hotel, motel, and convention centers
  2. Telecommunication Services
  3. Financial Services
  4. Media Sales
  5. Real Estate
  6. Insurance
  7. Business Services

Business Goods Channels

  1. Industrial Salespeople
  2. Sales Engineers or Application Engineers
  3. Field Salespeople
  4. Missionary
... Continue reading "Mastering Professional Selling: Roles, Strategies, and Ethics" »

Effective Performance Management: Strategy to Execution

Classified in Other subjects

Written on in English with a size of 13.24 KB

Chapter 1: Performance Management Foundations

This chapter introduces the foundational concepts of performance management (PM), contrasting it with performance appraisal (PA) and establishing its multifaceted purposes within an organization.

Cognitive Biases & Self-Reflection

Common cognitive biases can hinder objective judgment:

  • Ignorance Assumption: Assuming disagreement stems from a lack of information.
  • Idiocy Assumption: Attributing disagreement to a lack of understanding or narrow perspectives.
  • Evil Assumption: Attributing disagreement to malicious intent.

The implications of these biases are discussed, emphasizing the need for self-reflection to avoid constructing infallible, self-serving narratives.

The HALT Principle

The HALT principle is... Continue reading "Effective Performance Management: Strategy to Execution" »

Research Ethics and Intellectual Property in Engineering

Classified in Law & Jurisprudence

Written on in English with a size of 1.99 MB

Types of Research Misconduct

  • Fabrication (Illegitimate creation of data): Fabrication is the act of conjuring data or experiments with a belief of knowledge about what the conclusion of the analysis or experiments would be, but cannot wait for the results possibly due to timeline pressures from supervisor or customers.

  • Falsification (Inappropriate alteration of data): Falsification is the misrepresentation or misinterpretation, or illegitimate alteration of data or experiments, even if partly, to support a desired hypothesis even when the actual data received from experiments suggest otherwise. Falsification and fabrication of data and results hamper engineering research and cause false empirical data to percolate in the literature, wreck trustworthiness

... Continue reading "Research Ethics and Intellectual Property in Engineering" »

Walter McMillian Case: Uncovering Injustice and Corruption

Classified in English

Written on in English with a size of 4.35 KB

Chapter 5: Uncovering Systemic Injustice

Bryan Stevenson begins a deeper investigation into Walter McMillian’s case, uncovering significant misconduct by law enforcement and the prosecution. He discovers that Walter was placed on death row before his trial, an unusual and cruel treatment that underscored the racial bias in the case. Stevenson learns about the prosecution’s reliance on coerced and fabricated testimony from Ralph Myers and Bill Hooks. He faces hostility and intimidation from local officials as he works to challenge the wrongful conviction.

Key Figures and Their Roles in the Case

Walter McMillian

Walter was placed on death row even before being convicted, a rare and punitive measure. His alibi—being at a fish fry with dozens

... Continue reading "Walter McMillian Case: Uncovering Injustice and Corruption" »

Aircraft Collision Avoidance System: Procedure Details

Classified in Other subjects

Written on in English with a size of 3.34 KB

procedure Control_Collisions is
Current_Obstacle_Distance: Distance_Type := 0; Current_Light: Light_Type := 0;
Current_Pw : Power_Type := 0; Current_A: Altitude_Type :=0;
Current_S :Speed_Type :=0; Pilot_P: PilotPresence_Type;
Velocity_Seconds : integer := 0;
Time_To_Collision : integer := 0;
begin
if (Control_Button.Get_Mode) then
Read_Distance(Current_Obstacle_Distance);
Read_Power(Current_Pw);---Inicio
Current_S := Speed_Type (float (Current_Pw) * 1.2);
Time_To_Collision := integer(Current_Obstacle_Distance) * 3600;
Time_To_Collision := Time_To_Collision / 1000;
Time_To_Collision := Time_To_Collision / (integer(Current_S))
Pilot_P := Read_PilotPresence;
Read_Light_Intensity(Current_Light);
if (Control_Button.Get_Mode) then
if (Pilot_P =
... Continue reading "Aircraft Collision Avoidance System: Procedure Details" »

Machine Learning Algorithms: Comprehensive Definitions

Classified in Computers

Written on in English with a size of 13.82 KB

Support Vector Machines (SVM)

A support vector machine is a supervised method for classification or regression that seeks a boundary in a high-dimensional space which separates classes with the widest possible margin. The training process involves choosing a boundary that maximizes the distance to the nearest training points, known as support vectors. When data are not perfectly separable, slack variables can be introduced to allow some misclassifications or margin violations while balancing margin maximization and classification accuracy. A kernel is a special function that effectively maps data into higher-dimensional spaces without doing the mapping explicitly; it lets the support vector machine handle nonlinear relationships by measuring... Continue reading "Machine Learning Algorithms: Comprehensive Definitions" »

Effective Email, Essay, and Letter Structures

Classified in Language

Written on in English with a size of 2.71 KB

Email Structure: Key Components

Subject Line: Clear and relevant (e.g., "Inquiry About Extended Essay Research Sources").

Salutation: Polite greeting (e.g., "Dear Ms. Smith").

Introduction: Briefly introduce yourself and the purpose of the email (e.g., "I am a Year 12 student seeking guidance on...").

Main Content: Provide details concisely; ask clear questions.

Connection to IB Values: Relate to IB Learner Profile traits if applicable (e.g., "As an inquirer...").

Closing: Summarize points and express gratitude (e.g., "Thank you for your consideration.").

Sign-Off: Formal closing (e.g., "Sincerely,").

Signature: Name, role, and contact info (e.g., Alex Johnson, Year 12 Student, XYZ School).

Essay Structure: A Comprehensive Outline

Title: Clear and concise;... Continue reading "Effective Email, Essay, and Letter Structures" »