What are small red dot like spiders that are found in large numbers?
Let's see, if these spiders are around plants, my guess is that they are spider mites. Damage from these little guys can be severe. Leaves turn silver, as the chlorophyll disappears, or turn yellow as they die. Leaves fall on the floor for no apperant reason. A slight red dust can be found on the underside of leaves. I have never dealt with this problem, I bet a nusery worker would know how to get rid of them. Rinsing your plants every now and then can detour many pests and diseases.
Logarithms were originally used to convert multiplications into additions and divisions into subtractions (plus some looking up in tables).
To multiply 3456 by 6789
So the only calculation is a simple addition at step 3.
Logarithms were often used for approximate calculations (4 significant figures), but there were tables for more accurate work.
Nowadays, though, it is easier to use calculators for multiplication and division.
There is a whole class of problems where the solution involves logarithms. If the rate of change in a variable X is directly proportional to the quantity X, then the solution involves logarithms (or its inverse, exponents). Typical textbook examples include radioactive decay, simple chemical reactions, bacterial {or any uncontrolled] growth, compound interest.
How is tin used in everyday life?
Tin is used to coat metals to prevent corrosion (tin cans are made from tin coated steel).
Tin is also an alloying agent. Important tin alloys such as soft solder, type metal, fusible metal, pewter, bronze, bell metal, babbitt metal, white metal, die casting alloy, and phosphor bronze.
The Pilkington Process is used for producing glass; this involves floating molten glass on molten tin to produce a flat surface.
Tin salts are sprayed onto glass to produce electrically conductive coatings. These salt treated panes can be used for panel lighting and for frost-free windshields.
Some magnets are made of crystalline tin-niobium wire, which is super conductive at low temperatures. These magnets weigh just a few pounds; yet produce magnetic fields comparable to those of 100-ton electromagnets.
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,c,n;
printf("enter the numbers");
scanf("%D",&n);
for(i=0;i<n;i++)
a=b;
a=c;
c=a+b;
printf("the sum is %c",);
getch();
}
What types of math are used in chemical engineering?
Chemical engineers use Optimization Techniques and Operations Research to optimize and bring out the most suitable design with appropriate parameters.
Chemical engineers use Computational Fluid Dynamics involving lots of complex calculus to solve complicated fluid system and heat transfer problems.
Chemical engineers fit data for accurate graphical analysis using methods of regression and other graph techniques.
Chemical engineers use Partial Differential Equations and Ordinary Differential Equations using either manually or by Polymath, Matlab, Wolfram Mathematica to solve and get a solution to system of equations.
Chemical engineers use Numerical Analysis and techniques to solve a variety of problems based on the dynamic nature of the system.
Chemical engineers use Surface Volume, Area, 3-D geometry and vector algebra for material analysis and assessing physical parameters to plant systems and units.
Write a program to obtain transpose of a 4 X 4 Matrix in c using functions?
void main()
{
int arr[4][4];
int i,j,a,b,f;
printf("\nInput numbers to 4*4 matrix");
for(i=0;i<4;i++)
{
for(j=0;j<4;j++)
{
printf("\nKey in the [%d][%d]) value",i+1,j+1);
scanf("%d",&arr[i][j]);
}
}
for(i=0;i<4;i++)
{
for(j=0,f=0;j<4;j++)
{
if(i!=j&&f==0)
continue;
a=arr[i][j];
b=arr[j][i];
arr[i][j]=b;
arr[j][i]=a;
f=1;
}
}
for(i=0;i<4;i++)
{
for(j=0;j<4;j++)
printf("%d ",arr[j][i]);
printf("\n");
}
}
What are the main areas of maths used in mechanical engineering?
Everything in engineering requires applications of mathematics.
Is this a joke? Mathematics is the QUEEN of the sciences. she RULES engineering. Without math, you have no engineering, any kind of engineering. Think of Mathematics as the Venus of the sciences.
How do you write a C program for a matrix multiplication using array?
include <stdio.h>
int main()
{
int m, n, p, q, c, d, k, sum = 0;
int first[10][10], second[10][10], multiply[10][10];
printf("Enter the number of rows and columns of first matrix\n");
scanf("%d%d", &m, &n);
printf("Enter the elements of first matrix\n");
for ( c = 0 ; c < m ; c++ )
for ( d = 0 ; d < n ; d++ )
scanf("%d", &first[c][d]);
printf("Enter the number of rows and columns of second matrix\n");
scanf("%d%d", &p, &q);
if ( n != p )
printf("Matrices with entered orders can't be multiplied with each other.\n");
else
{
printf("Enter the elements of second matrix\n");
for ( c = 0 ; c < p ; c++ )
for ( d = 0 ; d < q ; d++ )
scanf("%d", &second[c][d]);
for ( c = 0 ; c < m ; c++ )
{
for ( d = 0 ; d < q ; d++ )
{
for ( k = 0 ; k < p ; k++ )
{
sum = sum + first[c][k]*second[k][d];
}
multiply[c][d] = sum;
sum = 0;
}
}
printf("Product of entered matrices:-\n");
for ( c = 0 ; c < m ; c++ )
{
for ( d = 0 ; d < q ; d++ )
printf("%d\t", multiply[c][d]);
printf("\n");
}
}
return 0;
}
What math used in Mechanical Engineering?
First off, the question should be either "What math is used in Mechanical Engineering? or What is the highest level of math someone needs to take in order to become a Mechanical Engineer?"
Most college programs require through Differential Equations to earn a BS degree in ME. This means you would need to take Calculus 1, 2, and 3, Linear Algebra, and Differential Equations once you get to college. It is assumed that most students going into engineering will have no less than Pre-Calculus before entering college while most will have taken Calculus. Now each college has different requirements for fulfilling the math requirements for an engineering program. I know from my experience, Georgia Tech teaches math differently than most colleges because they combine Calc 1-3 and Linear Algebra into just 3 courses instead of 4.
My suggestion is look at the program requirements at the school you are interested in first. Second, evaluate whether you feel that you can learn the math. For those who struggle with math, if you really want to be an engineer, I suggest going to a smaller school where the class size will be smaller. This will have better student/teacher interaction so you can get more help.
A Value Curve was first used by Accor, a French hotel chain in 1985. Value Curves were first described in a paper authored by W Chan Kim and Renee Mauborgne entitled, "Value Innovation: The Strategic Logic of High Growth," published in HBR in January, 1997. This paper has generated more reprints for HBR than any other paper published in HBR in the 1990's.
Value curves have been popularized in Kim and Mauborgne's "best selling" book, "Blue Ocean Strategy," HBS Press, March 2005.
A Value Curve is divided into two halves. On the left side are the Elements of Performamce. These Elements, in aggregate, define the product or service. On the right side of the curve is the value delivered to the most important customer for each of these Elements.
Value Curves with metrics are an elegantly simple way (one ppt slide) of describing project goals to project team members, stakeholders and senior management.
Dick Lee
President and Founder
Value Innovations, Inc
dick_lee@value innovations.net
+1-303-688-4143
How do you determine which constraints are binding?
The values of the variables will satisfy the equality (rather than the inequality) form of the constraint - provided you are not dealing with integer programming.
What is numbers that multiplies to get -48 but adds up to get 32?
wouldn't it be 16 because 16 x 3 = 48 and 16+16=32Yup that would be the answer
What is an equation that will always equals 5?
1+4=5
2+3=5
1x5=5
square root of 25 is 5.
All these examples equals 5 and they will never change...
When does the methods fail to find the solutions?
Methods for finding solutions may fail for a variety of reasons:
How do you find the surface area of a rectagle?
to find the surface area of the triangle we just need to multiply the length with breath.
area=lengthXbreadth
What is the LCM of 6y3 and 18y4?
Prime factor both numbers or expressions and use the factors the number of times it was used the MOST in either number.
6y^3=2*3*y*y*y
18y^4=2*3*3*y*y*y*y
2*3*3*y*y*y*y=18y^4
What are the numerical method of gauss elimination and gauss Jordan method?
Here is the program for Gauss elimination method
#include<iostream.h>
#include<conio.h>
#include<math.h>
void main()
{float a[6][6],b[6],x[6],t,s;
int i,j,n,k;
clrscr();
cout<<"Enter the maximum no. of matrix"<<endl;
cin>>n;
cout<<"Enter th elements of matrix"<<endl;
for(i=0;i<n;i++)
{
for(j=0;j<n;j++)
{
cin>>a[i][j];
}
}
cout<<"enter the right constant"<<endl;
for(i=0;i<n;i++)
{
cin>>b[i];
}
for(k=0;k<n-1;k++)
{
for(i=k+1;i<n;i++)
{
t=a[i][k]/a[k][k];
a[i][k]=0;
for(j=k;j<n;j++)
{
a[i][j]=a[i][j]-(t*a[k][i]);
}
b[i]=b[i]-(t*b[k]);
}
}
x[n-1]=b[n-1]/a[n-1][n-1];
for(i=n-1;i>=0;i--)
{
s=0;
for(j=i+1;j<n;j++)
{s=s+(a[i][j]*x[j]);
}
x[i]=(b[i]-s)/a[i][i];
}
cout<<"the solution is"<<endl;
for(i=0;i<n;i++)
{
cout<<"x["<<i<<"]="<<x[i]<<endl;
}
getch();
}
C program for Gauss Jordan method:
#include<iostream.h>
#include<conio.h>
#include<math.h>
void main()
{float a[6][6],b[6],x[6],t,s;
int i,j,n,k;
clrscr();
cout<<"Enter the maximum no. of matrix"<<endl;
cin>>n;
cout<<"Enter th elements of matrix"<<endl;
for(i=0;i<n;i++)
{
for(j=0;j<n;j++)
{
cin>>a[i][j];
}
}
cout<<"enter the right constant"<<endl;
for(i=0;i<n;i++)
{
cin>>a[i][n];
}
for(k=0;k<n;k++)
{
for(i=0;i<n;i++)
if(i!=k)
{
for(j=k+1;j<n+1;j++)
{
a[i][j]=a[i][j]-(a[i][k]/a[k][k])*a[k][j]);
cout<<"the solution is"<<endl;
for(i=0;i<n;i++)
{
x[i]=(a[i][n]/a[i][i]);
cout<<"x["<<i<<"]="<<x[i]<<endl;
}
getch();
}
What is the alegbraic equation of the product of a number and five is -20?
The product of a number and 20
What are the Wiener-Hopf equations?
Wiener-Hopf equations (′vē·nər ′höpf i′kwā·zhənz) (mathematics) Integral equations arising in the study of random walks and harmonic analysis; they arewhere g and K are known functions on the positive real numbers and ƒ is the unknown function.