Ace - AI Tutor
Ask Our Educators
Textbooks
My Library
Flashcards
Scribe - AI Notes
Notes & Exams
Download App
soledad moore

soledad m.

Divider

Questions asked

BEST MATCH

Determine the logarithmic regression of the data below using either a calculator or spreadsheet program. Then, estimate the y value when the x value is 10. Round your answer to the nearest tenth. Do not include units in your answer.(14,72),(23,147),(37,231),(41,282),(56,320),(70,388)

View Answer
divider
BEST MATCH

Unit IV Exam 18 TB MC Qu. 10-95 (Static) The Discount on Bonds Payable... The Discount on Bonds Payable account is: 3.3 points 00:5103 Multiple Choice An expense. A liability. A contra equity. A contra expense. A contra liability.

View Answer
divider
BEST MATCH

What is a pathogen? A. A white blood cell that helps to fight off disease B. A surface molecule found on viruses or bacteria C. A disease-causing organism or virus D. A protein that attacks a specific antigen to help fight disease.

View Answer
divider
BEST MATCH

calculate the equilibrium constant, k, at 25.0 C for each of the reactions

View Answer
divider
BEST MATCH

What hypothesis did comparative psychologists propose regarding habit formation and behavior? Favorable conditions stimulate behavior while unfavorable conditions suppress it Behavior is entirely random and not influenced by conditions Habit formation only occurs in complex situations and not in simple ones Animals and humans learn entirely different principles of behavior

View Answer
divider
BEST MATCH

Use the graph of f in the figure to find the following values or state that they do not exist. If a limit does not exist, explain why. a. f(3) b. $$\lim_{x \to 3^-} f(x)$$ c. $$\lim_{x \to 3^+} f(x)$$ d. $$\lim_{x \to 3} f(x)$$ y = f(x)

View Answer
divider
BEST MATCH

tissue that functions to protect, support, and bind together body tissue

View Answer
divider
BEST MATCH

A hydrogen atom goes through the following transitions. Calculate the wavelength (in nm) and the energy (in eV) of the photon emitted by this hydrogen atom using Bohr's model. Which electromagnetic wave range is it in?

View Answer
divider
BEST MATCH

11. Fig.11 shows an alignment system being considered for directing a beam of microwave power onto a satellite in orbit. A rigid parabolic reflector unit has mass 30kg and its center of gravity is at point B. Its moment of inertia about B is 4 kgm². Beneath this, there is a rigid platform having mass 70kg. Its c.o.g. is at point E and its moment of inertia about E is 8 kgm². Points D and F on the rigid platform are each supported from ground by a spring-damper unit as shown where $k = 4000$ N/m and $c = 0.5Ns/m$. There are also springs of stiffness $k$ separating points A, D and points C, F. (a) Prepare an approximate STATE-SPACE model for the dynamics of this system. The inputs are to be the forces {$f_1, f_2$} (acting to separate A,D and C, F respectively). The outputs from this model are to be the vertical deflection (positive upwards), $u$, and angle (anticlockwise positive), $\theta$, of the reflector about its centre of gravity. Use the symbols $v$ and $\alpha$ to represent the vertical deflection and angle of the rigid platform. (b) A controller proposed for this system is intended to keep both $u$ and ($\theta_{ref} - \theta$) close to zero where $\theta_{ref}$ is a reference angle for the reflector determined by satellite position. The controller is described by: $f_1 = -200u - 10000(\theta - \theta_e)$ $f_2 = -200u + 10000(\theta_{ref} - \theta)$ Prepare a new STATE-SPACE model for the closed-loop system where $\theta_{ref}$ is the only input and the output is ($\theta_{ref} - \theta$). (c) Describe how you could determine whether the closed-loop system is stable and comment on what other information you could obtain from the same calculation. (Do not attempt to do the actual calculation) A 0.6m 0.6m $\theta$ B C $f_1$ k $f_2$ D E F k c k c Figure 11. A proposed beam-alignment mechanism.

View Answer
divider
BEST MATCH

In this homework, you will implement a Python script that solves the quadratic assignment problem using CPLEX. The quadratic assignment prob- lem is an integer problem defined as follows: as with the assignment problem, we consider the problem as related to two sets of objects S and T. S and T both have the same number of members, which are indexed from 1 to N. The problem is to assign each member of S to exactly one member of T to achieve some objective. There are two sorts of conditions we must fulfill: each member of S must be assigned to exactly one member of T, and each member of T must have exactly one member of S assigned to it. Binary variables x_(ij) can be introduced with the following interpretations: x_(ij)={(1 if i( a member of S) is assigned to j( a member of T),),(0 otherwise. ):} Conditions are imposed by the following two types of constraints: sum_(j=1)^N x_(ij)=1,i=1,dots,N, sum_(i=1)^N x_(ij)=1,j=1,dots,N. The objective is more complex than with the assignment problem. We have cost coefficients c_(ijkl), which have the following interpretations. c_(ijkl) is the cost incurred by assigning i (a member of S ) to j (a member of T ) at the same time as assigning k (a member of S ) to l (a member of T ). This cost will clearly be incurred only if x_(ij)=1 and x_(kl)=1, that is, if the product x_(ij)x_(kl)=1. The objective becomes a quadratic expression in binary variables: minimizez=sum_(i=1)^N sum_(j=1)^N sum_(k=1)^N sum_(l=1)^N c_(ijkl)x_(ij)x_(kl)It is very common for the coefficients c_(ijkl) to be derived from the product of other coefficients t_(ik) and d_(jl) so that c_(ijkl)=t_(ik)d_(jl). Firstly, we consider S to be a set of N factories and T to be a set of N cities. The problem is to locate one factory in each city and to minimize total communication costs between factories. The communication costs depend on (i) the frequency of communication between each pair of factories, and (ii) the distances between the two cities where each pair of factories is located. Clearly, some factories will have little to do with each other and can be located far apart at little cost. On the other hand, some factories may need to communicate a lot. The cost of communication will depend on the distance apart. In this application, we can interpret the coefficients t_(ik) and d_(jl) as follows: t_(ik) is the frequency of communication between factories i and k;d_(jl) is the cost per unit of communication between cities j and l (clearly, this will be related to the distance between j and l ). Obviously, the cost of communication between the factories i and k, located in cities j and l, will be given by c_(ijkl)=t_(ik)d_(jl). The total cost is therefore represented by the objective function. This problem will be represented using two .txt files, namely, frequencies . txt and distances.txt. The first file contains the frequencies (i.e., t_(ik) ) in N lines with N values. It contains the following lines for an example problem: frequencies.txt 25,63,34,52 63,39,21,57 34,21,10,66 525766,63 The second file contains the distances (i.e., d_(jl) ) in N lines with N values. It contains th It is very common for the coefficients ci to be derived from the product of other coefficients ti and dj so that ci = tid. Firstly, we consider S to be a set of N factories and T to be a set of N cities. The problem is to locate one factory in each city and to minimize total communication costs between factories. The communication costs depend on i the frequency of communication between each pair of factories, and (ii the distances between the two cities where each pair of factories is located Clearly, some factories will have little to do with each other and can be located far apart at little cost. On the other hand, some factories may need to communicate a lot. The cost of communication will depend on the distance apart. In this application, we can interpret the coefficients ti and dj as follows: ti is the frequency of communication between factories i and k; d, is the cost per unit of communication between cities j and I (clearly this will be related to the distance between j and l). Obviously, the cost of communication between the factories i and k, located in cities j and l will be given by cij = tidjr. The total cost is therefore represented by the objective function. This problem will be represented using two .txt files, namely, frequencies .txt and distances.txt. The first file contains the frequencies (i.e., ti) in N lines with N values. It contains the following lines for an example problem: frequencies.txt 2563 3452 63 39 21 57 34 21 10 66 5257 66 63 The second file contains the distances i.e., d in N lines with N values. It contains the following lines for an example problem: distances.txt 44 26 68 66 26 52 51 62 68 51 96 60 66 62 60 83 The optimum solution of the example problem is as follows: x=0 x=1 x=0 x=0 =0 =0 x3=0 x2=1 x=0 x=0 x3=1 43=0 x4=1 x4=0 x=0 4=0. Implement your algorithm to solve the quadratic assignment problem in a single interactive Python notebook using Azure Lab Services. Your notebook should include at least the following function definition that takes the file paths of two input files as parameters and returns the solution found. def quadratic_assignment_problem(frequencies_file, distances_file): # your implementation starts below # your implementation ends above return(x_star)

View Answer
divider