Answer:
Solution given:
For 1st
x²=71
For x=±
and
For 2nd
x³=71
For x=±![\sqrt[3]{71}](https://tex.z-dn.net/?f=%5Csqrt%5B3%5D%7B71%7D)
So answer is:
In first row
<u>Solution to x²=71</u>
In second row
<u>Solution to </u><u>x³</u><u>=71</u>
In third row
<u>neither</u>
In forth row
<u>Solution to x³=71</u>
Answer:
Step-by-step explanation:
The answer (y intercept) occurs when x = 0
The answer is -2
-5y = 10
y = 10/-5
y = - 2
Answer:
Algorithm
Start
Int n // To represent the number of array
Input n
Int countsearch = 0
float search
Float [] numbers // To represent an array of non decreasing number
// Input array elements but first Initialise a counter element
Int count = 0, digit
Do
// Check if element to be inserted is the first element
If(count == 0) Then
Input numbers[count]
Else
lbl: Input digit
If(digit > numbers[count-1]) then
numbers[count] = digit
Else
Output "Number must be greater than the previous number"
Goto lbl
Endif
Endif
count = count + 1
While(count<n)
count = 0
// Input element to count
input search
// Begin searching and counting
Do
if(numbers [count] == search)
countsearch = countsearch+1;
End if
While (count < n)
Output count
Program to illustrate the above
// Written in C++
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main()
{
// Variable declaration
float [] numbers;
int n, count;
float num, searchdigit;
cout<<"Number of array elements: ";
cin>> n;
// Enter array element
for(int I = 0; I<n;I++)
{
if(I == 0)
{
cin>>numbers [0]
}
else
{
lbl: cin>>num;
if(num >= numbers [I])
{
numbers [I] = num;
}
else
{
goto lbl;
}
}
// Search for a particular number
int search;
cin>>searchdigit;
for(int I = 0; I<n; I++)
{
if(numbers[I] == searchdigit
search++
}
}
// Print result
cout<<search;
return 0;
}
Answer:
Equation: 8=4b
b=2
Explanation:
The green line equals 8 and the black time equals 2b+2b. So to form an equation where the green line equals the black line it would look like: 8=2b+2b
8 being the green line
2b+2b being the black line
Then the directions tell us to combine like terms, like terms are terms that are the same such as 2b in this problem, and to combine them means to add them together.
So, 2b+2b= 4b
So the answer is, 8= 4b
In order to solve this equation divide both sides by 4.
Which leaves you with: 8/4= b
Now solve 8/4:
Which gives you:
b=2