Browse I
Alphabetical listing with fast deep pagination.
87858 items • Page 1368 / 1758
In this problem you will estimate the lifetime of electromagnetic energy at a ra
In this problem you will estimate the lifetime of electromagnetic energy at a rate given by P = -2kq^2a^2/3c^3, where a is acceleration. Assuminmg that the electron is one Bohr ra…
In this problem you will estimate the lifetime of electromagnetic energy at a ra
In this problem you will estimate the lifetime of electromagnetic energy at a rate given by P = -2kq^2a^2/3c^3, where a is acceleration. Assuminmg that the electron is one Bohr ra…
In this problem you will estimate the mean or expected value for rolling a fair
In this problem you will estimate the mean or expected value for rolling a fair die and compare it to the true mean or expected value for rolling a fair die. Simulate the rolling …
In this problem you will evaluate and be given a chance to check your intermedia
In this problem you will evaluate and be given a chance to check your intermediate steps. ------------------------------------------------------------------- ---------------------…
In this problem you will evaluate and be given a chance to check your intermedia
In this problem you will evaluate and be given a chance to check your intermediate steps. ------------------------------------------------------------------- ---------------------…
In this problem you will evaluate and be given a chance to check your intermedia
In this problem you will evaluate and be given a chance to check your intermediate steps. ------------------------------------------------------------------- ---------------------…
In this problem you will explore how to solve problems involving partial diploid
In this problem you will explore how to solve problems involving partial diploid lac operon bacterial strains. Bacterial strains that are "partially diploid" have two copies of th…
In this problem you will explore how to solve problems involving partial diploid
In this problem you will explore how to solve problems involving partial diploid lac operon bacterial strains. Bacterial strains that are "partially diploid" have two copies of th…
In this problem you will explore how to solve problems involving partial diploid
In this problem you will explore how to solve problems involving partial diploid lac operon bacterial strains. Bacterial strains that are "partially diploid" have two copies of th…
In this problem you will follow a piston around a cycle, a series of processes t
In this problem you will follow a piston around a cycle, a series of processes that end up where they began. We'll cover these much more later on, but you can begin to think about…
In this problem you will implement aspects of the LCS algorithm discussed in Lec
In this problem you will implement aspects of the LCS algorithm discussed in Lecture 3. Create a script called LCS .py. This script must contain the two functions described below,…
In this problem you will implement integer matrix addition. This will require yo
In this problem you will implement integer matrix addition. This will require you to dynamically allocate space for a 2 dimensional array. An example of matrix addition is: In gen…
In this problem you will implement the three component algorithms of the RSA cry
In this problem you will implement the three component algorithms of the RSA cryptographic protocol described in lecture. Define a Python function generate(k) that takes a single …
In this problem you will make a simualtion of the card game War in c++. You can
In this problem you will make a simualtion of the card game War in c++. You can read more about war at https://en.wikipedia.org/wiki/War_%28card_game%29. War is a card game played…
In this problem you will make a simualtion of the card game War in c++. You can
In this problem you will make a simualtion of the card game War in c++. You can read more about war at https://en.wikipedia.org/wiki/War_%28card_game%29. War is a card game played…
In this problem you will make a simualtion of the card game War. You can read mo
In this problem you will make a simualtion of the card game War. You can read more about war at https://en.wikipedia.org/wiki/War_%28card_game%29. War is a card game played by 2 p…
In this problem you will perform various tasks on a 1-by-n array V , whose eleme
In this problem you will perform various tasks on a 1-by-n array V, whose elements are either 1 or 0. For example, in Matlab: begin code For each of the following tasks test your …
In this problem you will predict the pH of a buffer solution and then predict th
In this problem you will predict the pH of a buffer solution and then predict the new pH after you add NaOH or HCl. Write your answers to three decimal places (X.XXX). The Ka of H…
In this problem you will prove the formula for the distance between two parallel
In this problem you will prove the formula for the distance between two parallel planes through an explicit calculation. Consider two parallel planes 2x + 3y + z = 1 and 2x + 3y +…
In this problem you will prove the formula for the distance between two parallel
In this problem you will prove the formula for the distance between two parallel planes through an explicit calculation. Consider two parallel planes 2x + 3y 4 z = 1 and 2x + 3y +…
In this problem you will prove the geometric series summation formula, which was
In this problem you will prove the geometric series summation formula, which was illustrated in class by the example 1/2 + 1/4 + 1/8 + .. = 1. (a) Let x be a real number, and defi…
In this problem you will recreate the class race of the turtle and the hare. You
In this problem you will recreate the class race of the turtle and the hare. You will use random number generation and method development to simulate this event. Our contenders be…
In this problem you will recreate the classic race of the turtle and the hare. Y
In this problem you will recreate the classic race of the turtle and the hare. You will use random number generation and method development to simulate this event. Our contenders …
In this problem you will use C++ built in arrays to create a class List , which
In this problem you will use C++ builtin arrays to create a class List, which should work something like a vector<int> In a file List.cpp, implement the following interface:…
In this problem you will use a combination of Monte Carlo analysis and multiple
In this problem you will use a combination of Monte Carlo analysis and multiple linear regression to investigate trends in simulated data. This type of analysis is known as “respo…
In this problem you will use and compare different piecewise linear models, for
In this problem you will use and compare different piecewise linear models, for different values of Vs. The Resistor is R = 5 kOhms Model 1: (ideal diode) Von = 0 volts (forward b…
In this problem you will use and compare different piecewise linear models, for
In this problem you will use and compare different piecewise linear models, for different values of Vs. The Resistor is R = 5 kOhms Model 1: (ideal diode) Von = 0 volts (forward b…
In this problem you will use series to derive an important equation known as Eul
In this problem you will use series to derive an important equation known as Euler's formula: e^ix = cos(x) + i sin(x) a) expand the Maclauin series for the three functions e^x, c…
In this problem you will use tabulated gas phase enthalpies of formation to esti
In this problem you will use tabulated gas phase enthalpies of formation to estimate bond dissociation enthalpies, often called 'bond strengths'. Consult the table below for entha…
In this problem you will use the Taylor series to approximate values of ex. Reca
In this problem you will use the Taylor series to approximate values of ex. Recall truncated Taylor series approximation of ex is given by: The exponential function, ex, can be ap…
In this problem you will use the cursor tracker code from the previous homework
In this problem you will use the cursor tracker code from the previous homework assignment to measure frequency responses to various sinusoidal inputs and then generate a Bode plo…
In this problem you will write a C++ function to calculate the nth number in a T
In this problem you will write a C++ function to calculate the nth number in a Tribonacci sequence The Tribonacci sequence is a generalization of the Fibonacci Sequence, wherein e…
In this problem you will write a C++ program to generate a list of all the the p
In this problem you will write a C++ program to generate a list of all the the prime numbers between a starting number and an ending number (inclusive).---------------------------…
In this problem you will write a Rainbow class which will draw a \"rainbow\" at
In this problem you will write a Rainbow class which will draw a "rainbow" at a specified (x, y). Rainbow will have a construct that takes the x, y coordinates of the upper-left h…
In this problem you will write a function that simulates an IT help desk work se
In this problem you will write a function that simulates an IT help desk work session. An IT technician opens the door for a free repair session, and, realizing there is already a…
In this problem you will write a function to implement following math function:
In this problem you will write a function to implement following math function: (This is an approximation of an activation function used in machine learning) The function called "…
In this problem you will write a function to parse a Shakespearean text (a short
In this problem you will write a function to parse a Shakespearean text (a short monologue) and glean information from the text file. There are a few parts to this problem; you wi…
In this problem you will write a program that plays connect four. The program sh
In this problem you will write a program that plays connect four. The program should start by asking the user for the dimensions of the board. Two players proceed by dropping coin…
In this problem you will write a series of functions for manipulating matrices (
In this problem you will write a series of functions for manipulating matrices (2D arrays). If you have not heard the mathematical term “matrix” before, here is a very simplistic…
In this problem you will write a simple guessing game for the user to guess a ra
In this problem you will write a simple guessing game for the user to guess a random number between 0 and 511 (up to 10 points extra credit if you can make it between 1-400 instea…
In this problem you will write several static methods to work with arrays and Ar
In this problem you will write several static methods to work with arrays and ArrayLists. Remember that a static method does not work on the instance variables of the class. All t…
In this problem you will write several static methods to work with arrays and Ar
In this problem you will write several static methods to work with arrays and ArrayLists. Remember that a static method does not work on the instance variables of the class. All t…
In this problem you\'ll compare the energy of an asteroid impact with those of t
In this problem you'll compare the energy of an asteroid impact with those of the Hiroshima bomb (yield 15kt TNT) and the Castle Bravo bomb (the largest nuclear test by the US wit…
In this problem you\'ll write the sql to move data from the 1NF table STUDENT_CL
In this problem you'll write the sql to move data from the 1NF table STUDENT_CLASS to normalized tables and check the integrity constraints Here are the relations represented by t…
In this problem you’ll implement a version of Facebook’s friend suggestions (“pe
In this problem you’ll implement a version of Facebook’s friend suggestions (“people you may know”). Write a Python function suggest_friends(adj, s, k) where adj is the adjacency …
In this problem, 0.95 mol of an ideal diatomic gas is heated at constant volume
In this problem, 0.95 mol of an ideal diatomic gas is heated at constant volume from 282 K to 546 K. (a) Find the increase in the internal energy of the gas, the work done by the …
In this problem, 0.95 mol of an ideal diatomic gas is heated at constant volume
In this problem, 0.95 mol of an ideal diatomic gas is heated at constant volume from 282 K to 546 K. (a) Find the increase in the internal energy of the gas, the work done by the …
In this problem, 0.99 mol of an ideal diatomic gas is heated at constant volume
In this problem, 0.99 mol of an ideal diatomic gas is heated at constant volume from 312 K to 564 K. (a) Find the increase in the internal energy of the gas, the work done by the …
In this problem, 0.99 mol of an ideal diatomic gas is heated at constant volume
In this problem, 0.99 mol of an ideal diatomic gas is heated at constant volume from 312 K to 564 K. (a) Find the increase in the internal energy of the gas, the work done by the …
In this problem, Chapter 28 number 7 in Cutnell Volume 7, I am getting the prope
In this problem, Chapter 28 number 7 in Cutnell Volume 7, I am getting the proper and dilated times mixed up. Wouldn't the earth observer see the dilated time of the bacterium of…