Answer:
La probabilidad pedida es 
Explanation:
Sabemos que la probabilidad de que un nuevo producto tenga éxito es de 0.85. Sabemos también que se eligen 10 personas al azar y se les pregunta si comprarían el nuevo producto. Para responder a la pregunta, primero definiremos la siguiente variable aleatoria :
'' Número de personas que adquirirán el nuevo producto de 10 personas a las que se les preguntó ''
Ahora bien, si suponemos que la probabilidad de que el nuevo producto tenga éxito se mantiene constante
y además suponemos que hay independencia entre cada una de las personas al azar a las que se les preguntó ⇒ Podemos modelar a
como una variable aleatoria Binomial. Esto se escribe :
~
en donde
es el número de personas entrevistadas y
es la probabilidad de éxito (una persona adquiriendo el producto) en cada caso.
Utilizando los datos ⇒
~ 
La función de probabilidad de la variable aleatoria binomial es :
con 
Si reemplazamos los datos de la pregunta en la función de probabilidad obtenemos :
con 
Nos piden la probabilidad de que por lo menos 8 personas adquieran el nuevo producto, esto es :

Calculando
y
por separado y sumando, obtenemos que 
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<
Answer:
See the attached pictures for detailed answer.
Explanation:
See the attached pictures for step by step explanation.
Answer:
A certain vehicle loses 3.5% of its value each year. If the vehicle has an initial value of $11,168, construct a model that represents the value of the vehicle after a certain number of years. Use your model to compute the value of the vehicle at the end of 6 years.
Explanation:
Those that harden under strain, such as the aluminum-magnesium alloys used in beverage cans and the copper-zinc alloy, brass, used for cartridges, which show more strain hardening than pure copper or aluminum, respectively.
When a material is deformed under a substantial amount of strain, strain hardening is seen as a strengthening process. Lamellar crystals and chain molecule orientation on a vast scale are the culprits. When plastic materials are stretched past their yield point, this phenomena is frequently seen. When a metal is stretched past its yield point, strain hardening occurs. The metal appears to get stronger and harder to deform as more stress is needed to cause additional plastic deformation. Strain hardening is directly related to fatigue.
Learn more about strain hardening here-
brainly.com/question/15058191
#SPJ4