barriers / 阅读 / 详情

fortran如何调用C++写成的库函数

2023-05-19 14:44:35
TAG: for
共1条回复
余辉

program main

!*****************************************************************************80

!

!! MAIN is the main program for KRONROD_PRB.

!

!  Licensing:

!

!    This code is distributed under the GNU LGPL license. 

!

!  Modified:

!

!    01 September 2011

!

!  Author:

!

!    John Burkardt

!

  use, intrinsic :: iso_c_binding! Fortran 2003 语言新加的模块。

  implicit none

!

!  TIMESTAMP is provided by the C++ library, and so the following

!  INTERFACE block must set up the interface.

!

  interface

    subroutine timestamp ( ) bind ( c )

      use iso_c_binding

end subroutine timestamp

  end interface

  call timestamp ( )

  write ( *, "(a)" ) " "

  write ( *, "(a)" ) "KRONROD_PRB:"

  write ( *, "(a)" ) "  FORTRAN90 version"

  write ( *, "(a)" ) "  FORTRAN90 test program calls C++ functions."

  call test01 ( )

  call test02 ( )

!

!  Terminate.

!

  write ( *, "(a)" ) " "

  write ( *, "(a)" ) "KRONROD_PRB:"

  write ( *, "(a)" ) "  Normal end of execution."

  write ( *, "(a)" ) " "

  call timestamp ( )

  stop

end

subroutine test01 ( )

!*****************************************************************************80

!

!! TEST01 tests the code for the odd case N = 3.

!

!  Licensing:

!

!    This code is distributed under the GNU LGPL license. 

!

!  Modified:

!

!    29 November 2010

!

!  Author:

!

!    John Burkardt

!

  use, intrinsic :: iso_c_binding

  implicit none

!

!  KRONROD is provided by the C++ library, and so the following

!  INTERFACE block must be set up to describe how data is to 

!  be passed.

!

  interface

    subroutine kronrod ( n, eps, x, w1, w2 ) bind ( c )

      use iso_c_binding

      integer ( c_int ), VALUE :: n

      real ( c_double ), VALUE :: eps

      real ( c_double ) :: x(*)

      real ( c_double ) :: w1(*)

      real ( c_double ) :: w2(*)

    end subroutine kronrod

  end interface

  integer ( c_int ), parameter :: n = 3

  real ( c_double ) eps

  integer ( c_int ) i

  integer ( c_int ) i2

  real ( c_double ) s

  real ( c_double ) w1(n+1)

  real ( c_double ) w2(n+1)

  real ( c_double ) :: wg(n) = (/ &

    0.555555555555555555556D+00, &

    0.888888888888888888889D+00, &

    0.555555555555555555556D+00 /)

  real    ( c_double ) :: wk(2*n+1) = (/ &

    0.104656226026467265194D+00, &

    0.268488089868333440729D+00, &

    0.401397414775962222905D+00, &

    0.450916538658474142345D+00, &

    0.401397414775962222905D+00, &

    0.268488089868333440729D+00, &

    0.104656226026467265194D+00 /)

  real ( c_double ) x(n+1)

  real ( c_double ) :: xg(n) = (/ &

   -0.77459666924148337704D+00, &

    0.0D+00, &

    0.77459666924148337704D+00 /)

  real ( c_double ) :: xk(2*n+1) = (/ &

   -0.96049126870802028342D+00, &

   -0.77459666924148337704D+00, &

   -0.43424374934680255800D+00, &

    0.0D+00, &

    0.43424374934680255800D+00, &

    0.77459666924148337704D+00, &

    0.96049126870802028342D+00 /)

  write ( *, "(a)" ) " "

  write ( *, "(a)" ) "TEST01"

  write ( *, "(a)" ) "  Request KRONROD to compute the Gauss rule"

  write ( *, "(a)" ) "  of order 3, and the Kronrod extension of"

  write ( *, "(a)" ) "  order 3+4=7."

  write ( *, "(a)" ) " "

  write ( *, "(a)" ) "  Compare to exact data."

  eps = 0.000001D+00

  call kronrod ( n, eps, x, w1, w2 )

  write ( *, "(a)" ) " "

  write ( *, "(a,i2)" ) "  KRONROD returns 3 vectors of length ", n + 1

  write ( *, "(a)" ) " "

  write ( *, "(a)" ) "     I      X               WK              WG"

  write ( *, "(a)" ) " "

  do i = 1, n + 1

    write ( *, "(2x,i4,2x,g14.6,2x,g14.6,2x,g14.6)" ) i, x(i), w1(i), w2(i)

  end do

  write ( *, "(a)" ) " "

  write ( *, "(a)" ) "               Gauss Abscissas"

  write ( *, "(a)" ) "            Exact           Computed"

  write ( *, "(a)" ) " "

  do i = 1, n

    if ( 2 * i <= n + 1 ) then

      i2 = 2 * i

      s = -1.0D+00

    else

      i2 = 2 * ( n + 1 ) - 2 * i

      s = +1.0D+00

    end if

    write ( *, "(2x,i4,2x,g14.6,2x,g14.6)" ) i, xg(i), s * x(i2)

  end do

  write ( *, "(a)" ) " "

  write ( *, "(a)" ) "               Gauss Weights"

  write ( *, "(a)" ) "            Exact           Computed"

  write ( *, "(a)" ) " "

  do i = 1, n

    if ( 2 * i <= n + 1 ) then

      i2 = 2 * i

    else

      i2 = 2 * ( n + 1 ) - 2 * i

    end if

    write ( *, "(2x,i4,2x,g14.6,2x,g14.6)" ) i, wg(i), w2(i2)

  end do

  write ( *, "(a)" ) " "

  write ( *, "(a)" ) "             Gauss Kronrod Abscissas"

  write ( *, "(a)" ) "            Exact           Computed"

  write ( *, "(a)" ) " "

  do i = 1, 2 * n + 1

    if ( i <= n + 1 ) then

      i2 = i

      s = -1.0D+00

    else

      i2 = 2 * ( n + 1 ) - i

      s = +1.0D+00

    end if

    write ( *, "(2x,i4,2x,g14.6,2x,g14.6)" ) i, xk(i), s * x(i2)

  end do

  write ( *, "(a)" ) " "

  write ( *, "(a)" ) "             Gauss Kronrod Weights"

  write ( *, "(a)" ) "            Exact           Computed"

  write ( *, "(a)" ) " "

  do i = 1, 2 * n + 1

    if ( i <= n + 1 ) then

      i2 = i

    else

      i2 = 2 * ( n + 1 ) - i

    end if

    write ( *, "(2x,i4,2x,g14.6,2x,g14.6)" ) i, wk(i), w1(i2)

  end do

  return

end

subroutine test02 ( )

!*****************************************************************************80

!

!! TEST02 tests the code for the even case N = 4.

!

!  Licensing:

!

!    This code is distributed under the GNU LGPL license. 

!

!  Modified:

!

!    29 November 2010

!

!  Author:

!

!    John Burkardt

!

  use, intrinsic :: iso_c_binding

  implicit none

!

!  KRONROD is provided by the C++ library, and so the following

!  INTERFACE block must be set up to describe how data is to 

!  be passed.

!

  interface

    subroutine kronrod ( n, eps, x, w1, w2 ) bind ( c )

      use iso_c_binding

      integer ( c_int ), VALUE :: n

      real ( c_double ), VALUE :: eps

      real ( c_double ) :: x(*)

      real ( c_double ) :: w1(*)

      real ( c_double ) :: w2(*)

    end subroutine kronrod

  end interface

  integer ( c_int ), parameter :: n = 4

  real ( c_double ) eps

  integer ( c_int ) i

  integer ( c_int ) i2

  real ( c_double ) s

  real ( c_double ) w1(n+1)

  real ( c_double ) w2(n+1)

  real ( c_double ) x(n+1)

  write ( *, "(a)" ) " "

  write ( *, "(a)" ) "TEST02"

  write ( *, "(a)" ) "  Request KRONROD to compute the Gauss rule"

  write ( *, "(a)" ) "  of order 4, and the Kronrod extension of"

  write ( *, "(a)" ) "  order 4+5=9."

  eps = 0.000001D+00

  call kronrod ( n, eps, x, w1, w2 )

  write ( *, "(a)" ) " "

  write ( *, "(a,i2)" ) "  KRONROD returns 3 vectors of length ", n + 1

  write ( *, "(a)" ) " "

  write ( *, "(a)" ) "     I      X               WK              WG"

  write ( *, "(a)" ) " "

  do i = 1, n + 1

    write ( *, "(2x,i4,2x,g14.6,2x,g14.6,2x,g14.6)" ) i, x(i), w1(i), w2(i)

  end do

  return

end

相关推荐

这些词用英文写是什么

正方形 square 正方体 cube 长方形 rectangle 长方体 cuboid圆 circle 球 sphere 五边形 Pentagon 六边形 hexagon圆锥 cone 直角三角形 right triangle 锐角三角形 acute triangle钝角三角形 obtuse triangle 等边三角形 equilateral triangle等腰三角形 isosceles triange相交 intersect 直线 line 射线 ray 线段 line segment 距离 distance 宽 width 角 angle 原点 punch point
2023-01-01 11:50:513

数学名词的英文翻译

正数 positive number负数 negative number函数 function
2023-01-01 11:51:023

数学字母

http://wenku.baidu.com/view/8c4406d276a20029bd642dc0.html这个网站上有
2023-01-01 11:51:133

横坐标是什么意思

横坐标_词语解释【拼音】:héng zuò biāo【解释】:平面笛卡儿坐标系中一个点的水平坐标,其数值由平行于x轴的线段来量度词性abscissa【计】X-axis【化】abscissa【经】abscissa解释平面笛卡尔坐标系中一个点的横的坐标,由平行于x轴的线段来度量。横坐标通常与纵坐标相对。在数学的函数中也有所应用。【例句】:以横坐标为呵护,纵坐标为牵念,以短信为笔,描出心中永恒的沉淀。我从原点出发,悄悄来到你的身边,连成人生最美丽的风景线,永远定格成最真的思念。
2023-01-01 11:51:231

数学专业英语词汇速记

数学专业英语词汇速记   快到署假了,同学们也不要放松对英语的学习哦,我特地总结了数学专业英语词汇速记表,拿去不谢。   代数部分   1. 有关算数   add,plus 加   subtract 减   difference 差   multiply, times 乘   product 积   divide 除   divisible 可被整除的   divided evenly 被整除   dividend 被除数,红利   divisor 因子,除数   quotient 商   remainder 余数   factorial 阶乘   power 乘方   radical sign, root sign 根号   round to 四舍五入   to the nearest 四舍五入   2. 有关集合   union 并集   proper subset 真子集   solution set 解集   3.有关代数式、方程和不等式   algebraic term 代数项   like terms, similar terms 同类项   numerical coefficient 数字系数   literal coefficient 字母系数   inequality 不等式   triangle inequality 三角不等式   range 值域   original equation 原方程   equivalent equation 同解方程,等价方程   linear equation 线性方程(e.g. 5x+6=22)   4.有关分数和小数   proper fraction 真分数   improper fraction 假分数   mixed number 带分数   vulgar fraction,common fraction 普通分数   simple fraction 简分数   complex fraction 繁分数   numerator 分子   denominator 分母   (least) common denominator (最小)公分母   quarter 四分之一   decimal fraction 纯小数   infinite decimal 无穷小数   recurring decimal 循环小数   tenths unit 十分位   5. 基本数学概念   arithmetic mean 算术平均值   weighted average 加权平均值   geometric mean 几何平均数   exponent 指数,幂   base 乘幂的底数,底边   cube 立方数,立方体   square root 平方根   cube root 立方根   common logarithm 常用对数   digit 数字   constant 常数   variable 变量   inverse function 反函数   complementary function 余函数   linear 一次的,线性的   factorization 因式分解   absolute value 绝对值,e.g.|-32|=32   round off 四舍五入   6.有关数论   natural number 自然数   positive number 正数   negative number 负数   odd integer, odd number 奇数   even integer, even number 偶数   integer, whole number 整数   positive whole number 正整数   negative whole number 负整数   consecutive number 连续整数   real number, rational number 实数,有理数   irrational(number) 无理数   inverse 倒数   composite number 合数 e.g. 4,6,8,9,10,12,14,15……   prime number 质数 e.g. 2,3,5,7,11,13,15…… 注意:所有的质数(2除外)都是奇数,但奇数不一定是质数 reciprocal 倒数   common divisor 公约数   multiple 倍数   (least)common multiple (最小)公倍数   (prime) factor (质)因子   common factor 公因子   ordinary scale, decimal scale 十进制   nonnegative 非负的   tens 十位   units 个位   mode 众数   median 中数   common ratio 公比   7.数列   arithmetic progression(sequence) 等差数列   geometric progression(sequence) 等比数列   approximate 近似   (anti)clockwise (逆) 顺时针方向   cardinal 基数   ordinal 序数   direct proportion 正比   distinct 不同的   estimation 估计,近似   parentheses 括号   proportion 比例   permutation 排列   combination 组合   table 表格   trigonometric function 三角函数   unit 单位,位   几何部分   1. 所有的角   alternate angle 内错角   corresponding angle 同位角   vertical angle 对顶角   central angle 圆心角   interior angle 内角   exterior angle 外角   supplementary angles 补角   complementary angle 余角   adjacent angle 邻角   acute angle 锐角   obtuse angle 钝角   right angle 直角   round angle 周角   straight angle 平角   included angle 夹角   2.所有的三角形   equilateral triangle 等边三角形   scalene triangle 不等边三角形   isosceles triangle 等腰三角形   right triangle 直角三角形   oblique 斜三角形   inscribed triangle 内接三角形   3.有关收敛的平面图形,除三角形外   semicircle 半圆   concentric circles 同心圆   quadrilateral 四边形   pentagon 五边形   hexagon 六边形   heptagon 七边形   octagon 八边形   nonagon 九边形   decagon 十边形   polygon 多边形   parallelogram 平行四边形   equilateral 等边形   plane 平面   square 正方形,平方   rectangle 长方形   regular polygon 正多边形   rhombus 菱形   trapezoid 梯形   4.其它平面图形   arc 弧   line, straight line 直线   line segment 线段   parallel lines 平行线   segment of a circle 弧形   5.有关立体图形   cube 立方体,立方数   rectangular solid 长方体   regular solid/regular polyhedron 正多面体   circular cylinder 圆柱体   cone 圆锥   sphere 球体   solid 立体的"   6.有关图形上的附属物   altitude 高   depth 深度   side 边长   circumference, perimeter 周长   radian 弧度   surface area 表面积   volume 体积   arm 直角三角形的股   cross section 横截面   center of a circle 圆心   chord 弦   radius 半径   angle bisector 角平分线   diagonal 对角线   diameter 直径   edge 棱   face of a solid 立体的面   hypotenuse 斜边   included side 夹边   leg 三角形的直角边   median of a triangle 三角形的中线   base 底边,底数(e.g. 2的5次方,2就是底数)   opposite 直角三角形中的对边   midpoint 中点   endpoint 端点   vertex (复数形式vertices)顶点   tangent 切线的   transversal 截线   intercept 截距   7.有关坐标   coordinate system 坐标系   rectangular coordinate 直角坐标系   origin 原点   abscissa 横坐标   ordinate 纵坐标   number line 数轴   quadrant 象限   slope 斜率   complex plane 复平面   8.其它   plane geometry 平面几何   trigonometry 三角学   bisect 平分   circumscribe 外切   inscribe 内切   intersect 相交   perpendicular 垂直   pythagorean theorem 勾股定理   congruent 全等的   multilateral 多边的 ;
2023-01-01 11:51:281

Matlab 的线性回归最小二乘法 求大神解答

使用最小二乘法拟合比较简单:    x_r=[abscissa ones(size(abscissa))]ordinates;求出来即为题中的x和γ。如果不限方法,也可以使用多项式拟合:    p = polyfit(abscissa, ordinates,1);得到的结果是一致的(但二者分别是列向量和行向量)。 使用绝对值最小的拟合方法稍微复杂一些:e = ones(size(abscissa));f = [0; 0; e];A1 = [-abscissa -e -eye(length(abscissa))];b1 = -ordinates;A2 = [abscissa e -eye(length(abscissa))];b2 = ordinates;c = linprog(f,[A1;A2],[b1;b2]);求出来的即为所需的系数。 完整的代码如下(含绘图):% Linear fit with least square and least absolute errorslope=3; intercept=-2;abscissa = (-5:5)"; m = length(abscissa);WhiteNoise = 5*randn(m,1);ordinates = slope*abscissa + intercept + WhiteNoise;GrossError=80;ordinates(6)=ordinates(6)+GrossError;ordinates(10)=ordinates(10)-GrossError; x_r=[abscissa ones(size(abscissa))]ordinates;y2=[abscissa ones(size(abscissa))]*x_r;e = ones(size(abscissa));f = [0; 0; e];A1 = [-abscissa -e -eye(length(abscissa))];b1 = -ordinates;A2 = [abscissa e -eye(length(abscissa))];b2 = ordinates;c = linprog(f,[A1;A2],[b1;b2]);y1=[abscissa ones(size(abscissa))]*c(1:2);plot(abscissa, ordinates, "ro",abscissa, y2,"b-",abscissa, y1,"g--")legend("Original data", "Least L^2 error", "Least L^1 error")某次运行的结果如下(因数据为随机生成,每次运行结果不同):对于L1最小拟合,也可以使用优化工具箱的函数fminunc来做:objfun = @(x)sum( abs(abscissa*x(1)+x(2)-ordinates) );c2=fminunc(objfun,[2 -2])y3=[abscissa ones(size(abscissa))]*c2.";plot(abscissa, ordinates, "ro",abscissa, y2,"b-",abscissa, y1,"g--",abscissa, y3,"m:")legend("Original data", "Least L^2 error", "Least L^1 error", "fminunc")拟合的结果可能与前述线性规划的结果不同(但目标函数基本都能达到最小),这也说明这个问题本质上是多极值的,存在多个局部最优点。
2023-01-01 11:51:371

以X开头的有哪些单词

以X开头的单词有:X-axis、Xchomosome、Xmas、X-ray 、xylophone、Xenon、X-frame、Xerox。1、X-axis["eks,æksis] n. X轴;横坐标轴短语X-axis CPC 正交轴逆流色谱abscissa X-axis 横坐标X-axis amplifier X轴信号放大器2、Xmas美 ["eksməs] n. 圣诞节(等于Christmas)短语XMAS christmas 圣诞节Starlight Xmas 圣诞版 ; 星光满布X ; 圣诞节星光 ; 星光Plump Xmas 普拉姆的圣诞 ; 破解存档Father Xmas 不一样的爸爸 ; 父亲克斯玛斯3、X-ray英 ["eksreɪ]  美 [ˈɛksˌreɪ] vt. 用X光线检查vi. 使用X光n. 射线;射线照片adj. X光的;与X射线有关的短语X x-ray 射线X Blu-ray BOX 期间限定生产american history x blu-ray 野兽良民4、xylophone英 ["zaɪləfəʊn]  美 ["zaɪləfon] n. 木琴短语Xylophone Bin 木琴垃圾桶Xylophone Thingy 打击型风琴Xylophone Melodi 木琴5、xenon英 ["zenɒn; "ziː-]  美 ["zinɑn] n. [化学] 氙(稀有气体元素)短语xenon difluoride [无化] 二氟化氙 ; 二氟代氙xenon tetroxide 四氧化氙xenon poisoning [核] 氙中毒
2023-01-01 11:51:516

数学名词的翻译

class number[英][klɑ:s ˈnʌmbə][美][klæs ˈnʌmbɚ]分类号码; 类数;
2023-01-01 11:52:203

数学专业名词的英文名称总结

高等代数:Advanced Algebra
2023-01-01 11:52:372

X字母开头的单词

不好意思只找到这些X-axis n.(数)x轴,横坐标轴. Xchomosome (生)X染色体. Xmas n.圣诞节(Christmas的简写,词首以希腊字母X(意指基督)来取代Christ,用于非正式文字如广告中). X-ray x-ray n. (1)(常用复数)X射线,X光. (2) 可数名词 X光照片 (3)可数名词 透视检查. xylophone n.可数名词(音) 木琴 Xenon 氙 X-frame 交叉型框架 Xerox 复印机 xerox 复印 X-band X波段 X-cut X切割 X-component X分量 xylene 二甲苯.
2023-01-01 11:52:4515

英语数学术语

数学常用术语 倒数(reciprocal) x的倒数为1/x THE THIRD POWER是三次方的意思 2^5=the fifth power of 2 abscissa横坐标 ordinate纵坐标 quadrant象限 coordinate座标 slope斜率 intercede截距(有正负之分) solution(方程的)解 arithmetic progression等差数列(等差级数) common divisor公约数 common factor公因数 least common multiple最小公倍数 composite number合数 prime factor质因数 prime number质数 factor因数 consecutive integer连续的整数 set集合 sequence数列 tenths" digit十分位 tenth十分位 units" digit个位 whole number整数 3-digit number三位数 denominator分母 numerator分子 dividend被除数 divided evenly被整除 divisible可整除的 divisor除数 quotient商 remainder馀数 round四舍五入 fraction分数 geometric progression等比数列 improper fraction假分数 proper fraction真分数 increase by增加了 increase to增加到 integer整数 in terms of ..用。。表达 irrational无礼数 multiplier乘数 multiple倍数 multiply乘 product乘积 natural number自然数 per capita每人 mark up涨价 mark down降价 margin利润 depreciation折旧 compoud interest复利 arm直角三角形的股 hypotenuse直角三角形斜边 lag直角三角形的股 median of a triangle三角形中线 intersect相交 exterior angle外角 interior angle内角 complementary angles馀角 supplementary angles补角 vertex angle顶角 vertical angle对顶角 angle bisector角平分线 equilateral triangle等边三角形 isosceles triangle等腰三角形 scalene triangle不等边三角形 congruent全等的 rectangle长方形 length 长 both length两个长边 width 宽 rectangle prism长方体 trapezoid梯形 rhombus菱形 diagonal对角线 perimeter周长 segment线段 polygon多边形 regular polygon正多边形 parallelogram平行四边形 quadrilateral四边形 -agon -边形 *常用 tetragon四边形 *pentagon五边形 *hexagon六边形 heptagon七边形 *octagon八边形 enneagon=nonagon九变形 *decagon十变形 hendecagon=undecagon十一边形 dodecagon十二边形 quindecagon十五边形 chord弦 radian弧度 circumscribe外切,外接 inscribe内切,内接 concentric circle同心圆 cone圆锥(体积=1/3PI*R*R*H) -hedron -面体 hexahedron六面体 quadrihedron四面体=三角锥 volume体积 pyramid角锥 cube立方数/立方体 cylinder圆柱体 sphere球体 排列(permutation) 组合(combination) </SPAN>
2023-01-01 11:53:322

美国高中

你厉害,后天考试,这些基本语汇你都不清楚
2023-01-01 11:53:412

我需要以下的英文单词(数学的)

邻补角,同位角,内错角,同旁内角 supplementary angle, corresponding angles, alternate interior angle, angle with the side利息,纳税,支出 Interest, taxes, expenses上google翻译啊 要什么多可以
2023-01-01 11:53:493

关于数学英语单词

addition 加法 subtraction 减法 multiplication 乘法 division 除法 numerator 分子 denominator 分母 square 正方形 rectangle 长方形 triangle 三角形 parallelogram 平行四边形 circle 圆形 radius 半径 circumberence 圆周 diameter 直径 cube 正方体 pyramid 角锥体 cone 圆锥体 cylinder 圆柱体 sphere 球体 perimeter 周长 face 表面积 base 底面积 pi 圆周率 right angle 直角 obtuse angle 钝角 acute angle 锐角 parallel lines 平行线 perpenducular lines 垂直线
2023-01-01 11:53:594

数学的英文术语

代数 ALGEBRA 1. 数论natural number 自然数 positive number 正数 negative number 负数 odd integer, oddnumber 奇数 even integer, even number 偶数 integer, whole number 整数 positivewhole number 正整数 negative whole number 负整数 consecutive number 连续整数realnumber, rational number 实数,有理数 irrational(number) 无理数 inverse 倒数compositenumber 合数 e.g. 4,6,8,9,10,12,14,15… prime number 质数 e.g. 2,3,5,7,11,13,15… reciprocal 倒数common divisor 公约数 multiple 倍数 (minimum) common multiple (最小)公倍数 (prime) factor (质)因子 common factor 公因子ordinary scale, decimalscale 十进制 nonnegative 非负的 tens 十位 units 个位mode 众数 mean平均数 median中值 commonratio 公比 2. 基本数学概念arithmetic mean 算术平均值 weighted average 加权平均值 geometric mean 几何平均数 exponent指数,幂 base 乘幂的底数,底边 cube 立方数,立方体 square root 平方根cube root 立方根 common logarithm常用对数 digit 数字 constant 常数 variable 变量inverse function 反函数 complementaryfunction 余函数 linear 一次的,线性的 factorization 因式分解 absolute value绝对值,e.g.|-32|=32 round off 四舍五入数学 3. 基本运算add,plus 加 subtract 减 difference 差 multiply, times 乘 product 积 divide除divisible 可被整除的 divided evenly 被整除 dividend 被除数,红利 divisor 因子,除数,公约数 quotient 商 remainder 余数 factorial 阶乘 power 乘方 radical sign, root sign 根号round to 四舍五入 to the nearest 四舍五入 4. 代数式,方程,不等式algebraic term 代数项 like terms, similar terms 同类项 numerical coefficient数字系数literal coefficient 字母系数 inequality 不等式 triangle inequality 三角不等式 range 值域original equation 原方程 equivalent equation 同解方程,等价方程 linear equation 线性方程(e.g.5x+6=22) 5. 分数,小数proper fraction 真分数 improper fraction 假分数 mixed number 带分数 vulgarfraction,common fraction 普通分数 simple fraction 简分数 complex fraction繁分数numerator 分子 denominator 分母 (least) common denominator (最小)公分母 quarter四分之一 decimal fraction 纯小数 infinite decimal 无穷小数 recurring decimal 循环小数tenths unit 十分位 6. 集合union 并集 proper subset 真子集 solution set 解集 7. 数列arithmetic progression(sequence) 等差数列 geometric progression(sequence) 等比数列 8. 其它approximate 近似 (anti)clockwise (逆) 顺时针方向 cardinal 基数 ordinal 序数 directproportion 正比 distinct 不同的 estimation 估计,近似 parentheses 括号 proportion 比例permutation 排列 combination 组合 table 表格 trigonometric function 三角函数 unit 单位,位 几何 GEOMETRY 1. 角alternate angle 内错角 corresponding angle 同位角 vertical angle 对顶角 central angle圆心角 interior angle 内角 exterior angle 外角 supplementary angles 补角complementaryangle 余角 adjacent angle 邻角 acute angle 锐角 obtuse angle 钝角right angle 直角round angle 周角 straight angle 平角 included angle 夹角 2. 三角形equilateral triangle 等边三角形 scalene triangle 不等边三角形 isosceles triangle 等腰三角形right triangle 直角三角形 oblique 斜三角形 inscribed triangle 内接三角形 3. 收敛的平面图形,除三角形外semicircle 半圆 concentric circles 同心圆 quadrilateral 四边形 pentagon 五边形hexagon六边形 heptagon 七边形 octagon 八边形 nonagon 九边形 decagon 十边形 polygon 多边形parallelogram 平行四边形 equilateral 等边形 plane 平面 square 正方形,平方 rectangle 长方形regular polygon 正多边形 rhombus 菱形 trapezoid 梯形 4. 其它平面图形arc 弧 line, straight line 直线 line segment 线段 parallel lines 平行线 segment of acircle 弧形 5. 立体图形cube 立方体,立方数 rectangular solid 长方体 regular solid/regular polyhedron正多面体circular cylinder 圆柱体 cone 圆锥 sphere 球体 solid 立体的 6. 图形的附属概念plane geometry 平面几何 trigonometry 三角学 bisect 平分 circumscribe 外切 inscribe内切 intersect 相交 perpendicular 垂直 Pythagorean theorem 勾股定理(毕达哥拉斯定理) congruent全等的 multilateral 多边的 altitude 高 depth 深度 side 边长 circumference, perimeter周长 radian 弧度 surface area 表面积 volume 体积 arm 直角三角形的股 cross section 横截面center of a circle 圆心 chord 弦 diameter 直径radius 半径 angle bisector 角平分线diagonal 对角线化 edge 棱 face of a solid 立体的面 hypotenuse 斜边 included side 夹边 leg三角形的直角边 median(三角形的)中线 base 底边,底数(e.g. 2的5次方,2就是底数) opposite 直角三角形中的对边midpoint 中点 endpoint 端点 vertex (复数形式vertices)顶点 tangent 切线的transversal 截线intercept 截距 7. 坐标coordinate system 坐标系 rectangular coordinate 直角坐标系 origin 原点 abscissa 横坐标ordinate 纵坐标 number line 数轴 quadrant 象限 slope 斜率 complex plane 复平面
2023-01-01 11:54:161

axes 和 axis 区别~??

axes--轴,轴线,轴心。axis--轴,名词复数。
2023-01-01 11:54:214

英语数学题中的英文单词

SAT里都有啊!代数:1、有关基本运算:add,plus加 subtract减 difference差multiply, times乘 product积 divide除 divisible可被整除的 divided evenly被整除 dividend被除数divisor因子,除数 quotient商 remainder余数factorial阶乘 power乘方 radical sign, root sign根号 round to四舍五入 to the nearest四舍五入 2.有关集合union并集 proper subset真子集 solution set解集3.有关代数式、方程和不等式algebraic term代数项like terms,similar terms同类项numerical coefficient数字系数literal coefficient字母系数inequality不等式triangle inequality三角不等式range值域original equation原方程equivalent equation同解方程等价方程linear equation线性方程(e.g.5 x +6=22) 4.有关分数和小数proper fraction真分数improper fraction假分数mixed number带分数vulgar fraction,common fraction普通分数simple fraction简分数complex fraction繁分数numerator分子denominator分母(least)common denominator(最小)公分母quarter四分之一decimal fraction纯小数infinite decimal无穷小数recurring decimal循环小数tenths unit十分位5.基本数学概念arithmetic mean算术平均值weighted average加权平均值geometric mean几何平均数exponent指数,幂base乘幂的底数,底边cube立方数,立方体square root平方根cube root立方根common logarithm常用对数digit数字constant常数variable变量inverse function反函数complementary function余函数linear一次的,线性的factorization因式分解absolute value绝对值,e.g.|-32|=32round off四舍五入 6.有关数论natural number自然数positive number正数negative number负数odd integer, odd number奇数even integer, even number偶数integer, whole number整数positive whole number正整数negative whole number负整数consecutive number连续整数real number, rational number实数,有理数irrational(number)无理数inverse倒数composite number合数e.g.4,6,8,9,10,12,14,15……prime number质数e.g.2,3,5,7,11,13,15……reciprocal倒数common divisor公约数multiple倍数(least)common multiple(最小)公倍数(prime)factor(质)因子common factor公因子ordinary scale, decimal scale十进制nonnegative非负的tens十位units个位mode众数median中数common ratio公比 7.数列arithmetic progression(sequence)等差数列geometric progression(sequence)等比数列8.其它approximate近似(anti)clockwise(逆)顺时针方向cardinal基数ordinal序数direct proportion正比 distinct不同的estimation估计,近似parentheses括号proportion比例permutation排列combination组合table表格trigonometric function三角函数unit单位,位几何:1.所有的角alternate angle内错角corresponding angle同位角vertical angle对顶角central angle圆心角interior angle内角exterior angle外角supplementary angles补角complementary angle余角adjacent angle邻角acute angle锐角obtuse angle钝角right angle直角round angle周角straight angle平角included angle夹角2.所有的三角形equilateral triangle等边三角形scalene triangle不等边三角形isosceles triangle等腰三角形right triangle直角三角形oblique斜三角形inscribed triangle内接三角形3.有关收敛的平面图形,除三角形外semicircle半圆concentric circles同心圆quadrilateral四边形pentagon五边形hexagon六边形heptagon七边形octagon八边形nonagon九边形decagon十边形polygon多边形parallelogram平行四边形equilateral等边形plane平面square正方形,平方rectangle长方形regular polygon正多边形rhombus菱形trapezoid梯形4.其它平面图形arc弧line, straight line直线line segment线段parallel lines平行线segment of a circle弧形5.有关立体图形 cube立方体,立方数rectangular solid长方体regular solid/regular polyhedron正多面体circular cylinder圆柱体cone圆锥sphere球体solid立体的6.有关图形上的附属物altitude高depth深度side边长circumference, perimeter周长radian弧度surface area 表面积volume体积arm直角三角形的股cross section横截面center of a circle圆心chord弦radius半径angle bisector角平分线diagonal对角线diameter直径edge棱face of a solid立体的面hypotenuse斜边included side夹边leg三角形的直角边median of a triangle三角形的中线base底边,底数(e.g.2的5次方,2就是底数)opposite直角三角形中的对边midpoint中点endpoint端点vertex(复数形式vertices)顶点tangent切线的transversal截线intercept截距7.有关坐标coordinate system坐标系rectangular coordinate直角坐标系origin原点abscissa横坐标ordinate纵坐标number line数轴quadrant象限slope斜率complex plane复平面8. 其它plane geometry平面几何trigonometry三角学bisect平分circumscribe外切inscribe内切intersect相交perpendicular垂直Pythagorean theorem勾股定理congruent全等的multilateral多边的
2023-01-01 11:54:396

一些关于数学的英语单词,易出现的

一.数学中常用符号+: plus X: multiply-: subtract ÷: divideV~: square root |...|: absolute value=: is equal to =/=: is not equal to>: is greater than <: is less than//: is parallel to _|_: is perpendicular to>=: is greater than or equal to (或 no less than)<=: is less than or equal to (或no more than)二.表达相应数目的前缀1:uni-,mono-2:bi-,du-,di-3:tri-,ter-,4:tetra-,quad-,5:penta-,quint,6:hex-,sex-,7:sept-,hapta-,8:oct,9:enn-,10:dec-,deka-,三.数学中常用单词术语abscissa 横坐标absolute value 绝对值acute angle 锐角adjacent angle 邻角addition 加algebra 代数altitude 高angle bisector 角平分线arc 弧area 面积arithmetic mean 算术平均值(总和除以总数)arithmetic progression 等差数列(等差级数)arm 直角三角形的股at 总计(乘法)average 平均值base 底be contained in 位于...上bisect 平分center 圆心chord 弦circle 圆形circumference 圆周长circumscribe 外切,外接clockwise 顺时针方向closest approximation 最相近似的combination 组合common divisor 公约数,公因子common factor 公因子complementary angles 余角(二角和为90度)composite number 合数(可被除1及本身以外其它的数整除)concentric circle 同心圆cone 圆锥(体积=1/3*pi*r*r*h)congruent 全等的consecutive integer 连续的整数coordinate 坐标的cost 成本counterclockwise 逆时针方向cube 1.立方数2.立方体(体积=a*a*a 表面积=6*a*a)cylinder 圆柱体decagon 十边形decimal 小数decimal point 小数点decreased 减少decrease to 减少到decrease by 减少了degree 角度define 1.定义 2.化简denominator 分母denote 代表,表示depreciation 折旧distance 距离distinct 不同的dividend 1. 被除数 2.红利divided evenly 被除数divisible 可整除的division 1.除 2.部分divisor 除数down payment 预付款,定金equation 方程equilateral triangle 等边三角形even number 偶数expression 表达exterior angle 外角face (立体图形的)某一面factor 因子fraction 1.分数 2.比例geometric mean 几何平均值(N个数的乘积再开N次方)geometric progression 等比数列(等比级数)have left 剩余height 高hexagon 六边形hypotenuse 斜边improper fraction 假分数increase 增加increase by 增加了increase to 增加到inscribe 内切,内接intercept 截距integer 整数interest rate 利率in terms of... 用...表达interior angle 内角intersect 相交irrational 无理数isosceles triangle 等腰三角形least common multiple 最小公倍数least possible value 最小可能的值leg 直角三角形的股length 长list price 标价margin 利润mark up 涨价mark down 降价maximum 最大值median, medium 中数(把数字按大小排列,若为奇数项,则中间那项就为中数,若为偶数项,则中间两项的算术平均值为中数。例:(1,3,8)其中数为3;(1,3,8,9)其中数为(3+8)/2=5)median of a triangle 三角形的中线mid point 中点minimum 最小值minus 减multiplication 乘法multiple 倍数multiply 乘natural number 自然数negative number 负数nonzero 非零number lines 数线numerator 分子obtuse angle 钝角octagon 八边形odd number 奇数ordinate 纵坐标overlap 重叠parallel lines 平行线parallelogram 平行四边形pentagon 五边形per capita 每人perimeter 周长permutation 排列perpendicular lines 垂直线pyramid 三角锥plane 平面plus 加polygon 多边形positive number 正数power 次方(2的5次方=the fifth power of 2)prime factor 质因子prime number 质数product 乘积profit 利润proper fraction 真分数proportion 比例purchasing price 买价quadrant 象限quadrihedrogon 四角锥quadrilateral 四边形quotient 商ratio 比例rational 有理数radius 半径(复数为radii)radian 弧度real number 实数reciprocal 倒数rectangle 长方形rectangular prism 长方体reduced 减少regular polygon 正多边形remainder 余数retail value 零售价rhombus 菱形right angle 直角right triangle 直角三角形round 四舍五入sale price 卖价segment 线段set 集合sequence 数列scalene triangle 不等边三角形side 边长simple interest 单利slope 斜率solution (方程的)解speed 过度sphere 球体(表面积=4*pi*r*r,体积=4/3*pi*r*r*r)square 1.平方数,平方 2.正方形square root 平方根straight angle 平角subtract 减subtraction 减法sum 和surface area 表面积supplementary angles 补角tangent 相切tenths" digit 十分位tenth 十分位tie 并列,打平times 倍total 1.总数(用于加法中,相当于+)2.总计(用于减法中,相当于-)to the nearest 最接近的trapezoid 梯形triangle 三角形two digits 2位units" digit 个位veiocity 速度vertex angle 顶角vertical angle 对顶角volume 体积whole number 整数width 宽
2023-01-01 11:55:016

matlab 谁帮我翻译一下

这不是都有注释吗?只要知道基本语法,大体看懂是没问题的,编程没有想象中那么难
2023-01-01 11:55:252

谁能提供西班牙语数学专用名词,越详细越好

mlkmlk
2023-01-01 11:55:334

中英文网络术语

中英文术语对照   absence 缺席   access 访问存取通路进入   achieve 实现完成   acquire 获得   adjacency list method 邻接表表示法   adjacency matrix method 邻接矩阵表示法   algorithm 算法   allocate 留下分配   analog 推论   append 添加   archive 档案归档   array 数组   assign 分配   assume 假设   assurance 确信信任   ATM(asynchronous transfer mode) 异步传输模式   b.. real programs kernels 实程序 核心程序   b.. toy benchmark synthetic benchmark 简单基准程序 复合基准程序   balance 平衡   bandwidth 带宽   batch 一批一组   benchmark 基准测试程序   best-fit algorithm 最佳适应算法   BFS(breadth first search) 广度优先搜索法   binary 二进制   binary relation 二元关系   binary tree 二叉树   bit series 比特序列   black-box white-box 黑盒 白盒   block miss 块失效   blocked 阻塞( 等待状态也称阻塞或   封锁状态)   boundary 界线分界   bridge 网桥   bubble sort 冒泡排序   calculation 计算   candidate key 候选键(辅键)   capability 能力才能   capacity 容量   cartesian product 笛卡尔积   CASE(com.. aided sof.. engineering) 计算机辅助软件工程   CCP(communication control processor) 通信控制处理机   cell 信元   characteristic 特征特性   circuit switching 线路交换   circular wait 循环等待   CISC(complex instruction set computer) 复杂指令集计算机   class 类   Client/Server 客户机/服务器   clock cycle clock rate 时钟周期 时钟频率   coaxial cable 同轴电缆   cohesion coupling 内聚 耦合   coincidental logical procedural functional 偶然内聚 逻辑内聚 过程   内聚 功能内聚   combination 联合配合   common 公用的 共同的   communication 通信   complement number 补码   component 成分   concept 概念观念   condition 情况状况   conform 符合   consist 组成存在   constrain 约束   contain 包含   correspond (corresponding) 相符合(相应的 一致的)   CPETT 计算机性能评价工具与技术   CPI 每条指令需要的周期数   CSMA/CD 带冲突检测的载波监听多路访问   cursor 游标   cyclic redundency check 循环冗余检校   database: integrity consistency restory 完整性 一致性 可恢复性   database: security efficiency 数据库设计的目标: 安全性 效率   deadlock: mutual exclusion 死锁条件: 互斥   deadlock: circular wait no preemption 死锁条件:循环等待 无优先权   decimal 十进位的   decision 决定判断   decomposition 双重的 混合的   decrease 减少   definition 定义   definition phase 定义阶段   demonstrate 证明   design phase 设计阶段   determine 限定   development phase 开发阶段   DFS(depth first search) 深度优先搜索法   diagram 图表   Difference Manchester 差分曼彻斯特   directed graph undirected graph 有向图 无向图   distinguish 辩认区别   distributed system 分布式系统   divide division 分开除 除法   divide union intersection difference 除 并 交 差   document 文件文档   DQDB(distributed queue dual bus) 分布队列双总线   draw 绘制   dual 二元的 双的   dynamic design process 动态定义过程   element 元素要素   elevator (scan) algorithm 电梯算法 又称扫描算法   encapsulation inheritance 封装( 压缩) 继承( 遗传)   encode 译成密码   entity 实体   entity integrity rule 实体完整性规则   equal 相等的   equation 方程式 等式   estimate 估计判断   Ethernet 以太网   evolution 发展演化   exceed 超过   exchange sort 交换排序   exclusive locks 排它锁(简记为X 锁)   execute 实现执行   exhibit 表现展示陈列   existence 存在发生   expertise 专门技术   external(internal) fragmentation 外( 内) 碎片   fault page fault 中断 过错 页中断   FDDI(fiber distributed data interface) 光纤分布式数据接口   FDM(frequency division multiplexing 频分多路复用   fiber optic cable 光缆   FIFO replacement policy 先进先出替换算法   figure 数字图形   final 最后的 最终的   first normal form 第一范式   floppy 活动盘片(软盘)   foreign key domain tuple 外来键 值域 元组   form 形状形式   formula 公式 表达式   foundation 基础根据基金   frame page frame 帧 结构 页结构   frequency 频率   FTP 文件传送服务   function 函数   functionally dependent 函数依赖   gateway 网间连接器   gather 聚集采集推测   general-purose registers 通用寄存器   generate 产生   grade 等级标准   graph (graphic) 图   Gropher 将用户的请求自动转换成   FTP   guarantee 保证确定   hash table hash function collision 哈希表哈希函数( 散列函数)碰撞   HDLC 面向比特型数据链路层协议   hit rate 命中率   host 主计算机   host language statement 主语言语句   hypertext 超级文本   illustrate 举例说明   independent 独立的   index 索引   indirect 间接的   influence 有影响的   initially 最初开头   insertion sort 插入排序   instruction format 指令格式   instruction set 指令集   interface 接口 分界面 连接体   internal 内部的 内在的   interrupt 中断   IPC 工业过程控制   ISAM VSAM 索引顺序存取方法虚拟存储存取方法   join natural join semijoin 连接 自然连接 半连接   judgment 判断   kernel executive supervisor user 核心执行管理用户   kernels 核心程序   key comparison 键(码)值比较   LAN(local area network) 局域网   load 负载载入   logical functional 逻辑内聚 功能内聚   longitudinal 水平的   loop 圈环状   maintain 维护保养供给   maintanence phase 维护( 保养) 阶段   MAN(metropclitan area network) 城域网   Manchester 曼彻斯特   map 地图 映射图   matrix 矩阵点阵   memory reference 存储器参量   message switching 报文交换   method 方法 技巧   MFLOP(million floating point operate p s 每秒百万次浮点运算   minimum 最小的   MIPS(millions of instructions per second 每秒百万条指令   module 单位基准   monitor (model benchmark physcal) method 监视( 模型基准物理)法   multilevel data flow chart 分层数据流图   multiple 复合的 多样的   multiple-term formula 多项式   multiplexing 多路复用技术   multiplication 乘法   mutual exclusion 互相 排斥   non-key attributes 非码属性   null 零空   Nyquist 奈奎斯特   object oriented 对象 趋向的 使适应的   object oriented analysis 面向对象的分析   object oriented databases 面向对象数据库   object oriented design 面向对象的设计   object oriented implementation 面向对象的实现   obtain 获得   occupy 占有 居住于   occurrence 事件   odd 奇数的   one-dimensional array 一维数组   OODB(object oriented data base) 面向对象数据库   OOM(object oriented method) 面向对象的方法   oom: information object message class 信息 对象 消息 类   oom: instance method message passing 实例 方法 消息传递   open system 开放系统   operand 操作数   optimized 尽量充分利用   optional 任选的 非强制的   organize 组织   overflow 溢出   overlapping register windows 重叠寄存器窗口   packet switching 报文分组交换   page fault 页面失效   page replacement algorithm 页替换算法   paged segments 段页式管理   PCB(process control block) 进程控制块   peer entites 对等实体   perform 表演执行   period 时期周期   permit 许可准许   phase 阶段局面状态   physical data link network layer 物理层 数据链路层 网络层   pipeline 管道   platter track cluster 面 磁道 簇   predicate 谓语   preemption 有优先权的   prefix (Polish form) 前缀 (波兰表达式)   preorder inorder postorder 前序 中序 后序   presentation application layer 表示层 应用层   primary key attributes 主码属性   principle 原则方法   procedural coincidental 过程内聚 偶然内聚   process 过程加工处理   proficient 精通   program debugging 程序排错   projection selection join 投影选择连接   proposition 主张建议陈述   protocal 协议   prototype 原型样板   prototyping method (model) 原型化周期 (模型)   pseudo-code 伪码( 又称程序设计语言PDL)   punctuation 标点   purpose 目的意图   quality 质量品质   queue 队列   ready blocked running 就绪 阻塞( 等待) 运行   real page number 实页数   real programs 实程序   redirected 重定向   redundency 冗余   reference integrity rule 引用完整性规则   referred to as 把.....当作   regarde 关于   register(registry) 寄存器 登记 注册 挂号   regularly 定期的 常规的   relation 关系   relay 中继   reliability 可信赖的   repeater 中继器   replacement 替换   represent 代表象征   request indication response confirm 请求 指示 响应 确认   resource 资源   respon 回答响应   RISC(reduced instruction set computer) 精简指令集计算机   robustness 健壮性   router 路由器   scheme 计划图表   sector head cylinder 扇区 磁头 柱面   selection sort 选择排序   semaphores 信号   sequence 序列顺序   Shanon 香农   share locks 共享锁(简记为S 锁)   short path critical path 最短路径 关键路径   signal 信号   signal-to-noise ratio 信噪比 B/N   similar 相似的   SISD SIMD MISD MIMD * 指令流 * 数据流   SMDS 交换多兆位数据服务   software development phase 软件开发阶段   software engineering 软件工程   software portability 软件可移植性   software requirements specification 软件需求说明书   solve 解决   sort 种类方式分类排序   spanning tree 跨越树 (生成树)   specify 指定说明   speedup 加速比   SSTF(shortest-seek-time-first) 最短寻道时间优先( 磁盘调度算法)   stack strategy non-stack strategy 堆栈型 非堆栈型   starvation 饥饿匮乏   statement 陈述   storage 贮藏库   store procdures 存储过程   strategy 战略兵法计划   strict 严密的   styles 文体风格   subgroup 循环的   subset 子集 子设备   superclass subclass abstract class 超类 子类 抽象类   suppose 假定   symbolic 象征的 符号的   synthetic benchmark 复合基准程序   system testing 系统测试   Systolic 脉动阵列   table 表表格桌子   TDM(time division multiplexing) 时分多路复用   technology 工艺技术   terminal 终端   testing phase 测试阶段   theta select project theta join θ选择 投影 θ连接   time complexity 时间复杂度   timestamping 时标技术   Token Bus 令牌总线   Token Ring 令牌环   toy benchmark 简单基准程序   transaction 事务记录   transmite 传送   transport layer session layer 传输层 会话层   traversal method 遍历方法   triggers store procedures 触发器 存储过程   (ORACLE 系统)   underflow 下溢   unique 唯一的   unit system acceptance testing 单元测试 系统测试 确认测试   universe 宇宙 全世界   update 更新   value [数]值   variable 变量   vertical 垂直的   vertice edge 顶点( 结点) 边   via 经过   virtual memory system 虚拟存储系统   WAN(wide area network) 广域网   waterfall model 瀑布模型   white noise 白噪声   write-back(copy-back) 写回法   write-through(store-through) 写直达法   WWW(world wide web) 万维网 a priori probability 先验概率 a programming language apl 语言 a r wire 地址读出线 a register 累加寄存器 a type address constant a型地址常数 a. c. power supply 交羚源 a/d conversion 模拟 数字转换 a/d converter 模拟 数字转换器模数转换器 a/m switch 自动手控开关 abacus 算盘 abbreviated dialing 缩位拨号 abend 任务异常结束 abnormal end of task 任务异常结束 abnormal function 异常功能 abnormal termination 异常结束 abort routine 异常终止程序 abortion 中止 abridged division 简略除法 abs 绝对值 abs function 绝对函数 abscissa axis 横轴 absolute address 绝对地址 absolute addressing 绝对编址 absolute addressing mode 绝对编码方式 absolute assembler 绝对汇编程序 absolute code 绝对代码 absolute coding 绝对编码 absolute command 绝对坐标命令 absolute coordinates 绝对坐标 absolute data 绝对数据 absolute element 绝对元素 absolute error 绝对误差 absolute execution area 绝对执行区 absolute expression 绝对表达式 absolute function 绝对函数 absolute instructionm 绝对指令 absolute language 机骑言 absolute loader 二进装入程序 absolute loader routine 绝对地址装入程序 absolute measurements 绝对测量 absolute name 绝对名 absolute order 绝对坐标命令 absolute program 绝对程序 absolute program loader 绝对程序的装入程序absolute programming 绝对程序设计 absolute sensitivity 绝对灵敏度 absolute symbol 绝对符号 absolute term 绝对项 absolute value 绝对值 absolute vector 绝对向量 absorber 吸收器吸收装置 absorbing barrier 吸收壁垒 absorption attenuation 吸收损耗 absorption loss 吸收损耗 abstract 摘录 abstract data type 抽象数据型 abstract machine 抽象计算机 abstract object 抽象客体 abstract semantic network 抽象语义网络 abstract symbol 抽象符号 abstraction 抽象 ac 交流 ac fault 动态故障 ac servomechanism 交僚服机构 ac servomotor 交僚服电动机 ac voltage 交羚压 acceleration 加速度 acceleration period 加速期 acceleration time 加速时间 accent 重音 accept 接受 accept statement 接收语句 acceptance gauge 检收量规 acceptance inspection 接收检验 acceptance sampling 验收取样 acceptance specification 验收说瞄 acceptance test 接收测试 accepting 接受 accepting station 接收站 acceptor 接收器受主 acceptor of data 数据接收器 access 存取 access address 存取地址 access arm 存取臂 access authorization 存取授权 access by key 键控存取 access code 存取代码 access control 存取控制 access control bits 存取控制位 access control key 存取控制键 access control mechanism 存取控制机构 access cycle 存取周期 access function 存取函数 access hole 取数孔 access interval 存取间隔
2023-01-01 11:55:461

数学里所有名词的翻译

数学 mathematics, maths(BrE), math(AmE) 公理 axiom 定理 theorem 计算 calculation 运算 operation 证明 prove 假设 hypothesis, hypotheses(pl.) 命题 proposition 算术 arithmetic 加 plus(prep.), add(v.), addition(n.) 被加数 augend, summand 加数 addend 和 sum 减 minus(prep.), subtract(v.), subtraction(n.) 被减数 minuend 减数 subtrahend 差 remainder 乘 times(prep.), multiply(v.), multiplication(n.) 被乘数 multiplicand, faciend 乘数 multiplicator 积 product 除 divided by(prep.), divide(v.), division(n.) 被除数 dividend 除数 divisor 商 quotient 等于 equals, is equal to, is equivalent to 大于 is greater than 小于 is lesser than 大于等于 is equal or greater than 小于等于 is equal or lesser than 运算符 operator 平均数mean 算术平均数arithmatic mean 几何平均数geometric mean n个数之积的n次方根 倒数(reciprocal) x的倒数为1/x 有理数 rational number 无理数 irrational number 实数 real number 虚数 imaginary number 数字 digit 数 number 自然数 natural number 整数 integer 小数 decimal 小数点 decimal point 分数 fraction 分子 numerator 分母 denominator 比 ratio 正 positive 负 negative 零 null, zero, nought, nil 十进制 decimal system 二进制 binary system 十六进制 hexadecimal system 权 weight, significance 进位 carry 截尾 truncation 四舍五入 round 下舍入 round down 上舍入 round up 有效数字 significant digit 无效数字 insignificant digit 代数 algebra 公式 formula, formulae(pl.) 单项式 monomial 多项式 polynomial, multinomial 系数 coefficient 未知数 unknown, x-factor, y-factor, z-factor 等式,方程式 equation 一次方程 simple equation 二次方程 quadratic equation 三次方程 cubic equation 四次方程 quartic equation 不等式 inequation 阶乘 factorial 对数 logarithm 指数,幂 exponent 乘方 power 二次方,平方 square 三次方,立方 cube 四次方 the power of four, the fourth power n次方 the power of n, the nth power 开方 evolution, extraction 二次方根,平方根 square root 三次方根,立方根 cube root 四次方根 the root of four, the fourth root n次方根 the root of n, the nth root sqrt(2)=1.414 sqrt(3)=1.732 sqrt(5)=2.236 常量 constant 变量 variable 坐标系 coordinates 坐标轴 x-axis, y-axis, z-axis 横坐标 x-coordinate 纵坐标 y-coordinate 原点 origin 象限quadrant 截距(有正负之分)intercede (方程的)解solution 几何geometry 点 point 线 line 面 plane 体 solid 线段 segment 射线 radial 平行 parallel 相交 intersect 角 angle 角度 degree 弧度 radian 锐角 acute angle 直角 right angle 钝角 obtuse angle 平角 straight angle 周角 perigon 底 base 边 side 高 height 三角形 triangle 锐角三角形 acute triangle 直角三角形 right triangle 直角边 leg 斜边 hypotenuse 勾股定理 Pythagorean theorem 钝角三角形 obtuse triangle 不等边三角形 scalene triangle 等腰三角形 isosceles triangle 等边三角形 equilateral triangle 四边形 quadrilateral 平行四边形 parallelogram 矩形 rectangle 长 length 宽 width 周长 perimeter 面积 area 相似 similar 全等 congruent 三角 trigonometry 正弦 sine 余弦 cosine 正切 tangent 余切 cotangent 正割 secant 余割 cosecant 反正弦 arc sine 反余弦 arc cosine 反正切 arc tangent 反余切 arc cotangent 反正割 arc secant 反余割 arc cosecant 集合aggregate 元素 element 空集 void 子集 subset 交集 intersection 并集 union 补集 complement 映射 mapping 函数 function 定义域 domain, field of definition 值域 range 单调性 monotonicity 奇偶性 parity 周期性 periodicity 图象 image 数列,级数 series 微积分 calculus 微分 differential 导数 derivative 极限 limit 无穷大 infinite(a.) infinity(n.) 无穷小 infinitesimal 积分 integral 定积分 definite integral 不定积分 indefinite integral 复数 complex number 矩阵 matrix 行列式 determinant 圆 circle 圆心 centre(BrE), center(AmE) 半径 radius 直径 diameter 圆周率 pi 弧 arc 半圆 semicircle 扇形 sector 环 ring 椭圆 ellipse 圆周 circumference 轨迹 locus, loca(pl.) 平行六面体 parallelepiped 立方体 cube 七面体 heptahedron 八面体 octahedron 九面体 enneahedron 十面体 decahedron 十一面体 hendecahedron 十二面体 dodecahedron 二十面体 icosahedron 多面体 polyhedron 旋转 rotation 轴 axis 球 sphere 半球 hemisphere 底面 undersurface 表面积 surface area 体积 volume 空间 space 双曲线 hyperbola 抛物线 parabola 四面体 tetrahedron 五面体 pentahedron 六面体 hexahedron菱形 rhomb, rhombus, rhombi(pl.), diamond 正方形 square 梯形 trapezoid 直角梯形 right trapezoid 等腰梯形 isosceles trapezoid 五边形 pentagon 六边形 hexagon 七边形 heptagon 八边形 octagon 九边形 enneagon 十边形 decagon 十一边形 hendecagon 十二边形 dodecagon 多边形 polygon 正多边形 equilateral polygon 相位 phase 周期 period 振幅 amplitude 内心 incentre(BrE), incenter(AmE) 外心 excentre(BrE), excenter(AmE) 旁心 escentre(BrE), escenter(AmE) 垂心 orthocentre(BrE), orthocenter(AmE) 重心 barycentre(BrE), barycenter(AmE) 内切圆 inscribed circle 外切圆 circumcircle 统计 statistics 平均数 average 加权平均数 weighted average 方差 variance 标准差 root-mean-square deviation, standard deviation 比例 propotion 百分比 percent 百分点 percentage 百分位数 percentile 排列 permutation 组合 combination 概率,或然率 probability 分布 distribution 正态分布 normal distribution 非正态分布 abnormal distribution 图表 graph 条形统计图 bar graph 柱形统计图 histogram 折线统计图 broken line graph 曲线统计图 curve diagram 扇形统计图 pie diagabscissa 横坐标 absolute value 绝对值 acute angle 锐角 adjacent angle 邻角 addition 加 algebra 代数 altitude 高 angle bisector 角平分线 arc 弧 area 面积 arithmetic mean 算术平均值(总和除以总数) arithmetic progression 等差数列(等差级数) arm 直角三角形的股 at 总计(乘法) average 平均值 base 底 be contained in 位于...上 bisect 平分 center 圆心 chord 弦 circle 圆形 circumference 圆周长 circumscribe 外切,外接 clockwise 顺时针方向 closest approximation 最相近似的 combination 组合 common divisor 公约数,公因子 common factor 公因子 complementary angles 余角(二角和为90度) composite number 合数(可被除1及本身以外其它的数整除) concentric circle 同心圆 cone 圆锥(体积=1/3*pi*r*r*h) congruent 全等的 consecutive integer 连续的整数 coordinate 坐标的 cost 成本 counterclockwise 逆时针方向 cube 1.立方数 2.立方体(体积=a*a*a 表面积=6*a*a) cylinder 圆柱体 decagon 十边形 decimal 小数 decimal point 小数点 decreased 减少 decrease to 减少到 decrease by 减少了 degree 角度 define 1.定义 2.化简 denominator 分母 denote 代表,表示 depreciation 折旧 distance 距离 distinct 不同的 dividend 1. 被除数 2.红利 divided evenly 被除数 divisible 可整除的 division 1.除 2.部分 divisor 除数 down payment 预付款,定金 equation 方程 equilateral triangle 等边三角形 even number 偶数 expression 表达 exterior angle 外角 face (立体图形的)某一面 factor 因子 fraction 1.分数 2.比例 geometric mean 几何平均值(N个数的乘积再开N次方) geometric progression 等比数列(等比级数) have left 剩余 height 高 hexagon 六边形 hypotenuse 斜边 improper fraction 假分数 increase 增加 increase by 增加了 increase to 增加到 inscribe 内切,内接 intercept 截距 integer 整数 interest rate 利率 in terms of... 用...表达 interior angle 内角 intersect 相交 irrational 无理数 isosceles triangle 等腰三角形 least common multiple 最小公倍数 least possible value 最小可能的值 leg 直角三角形的股 length 长 list price 标价 margin 利润 mark up 涨价 mark down 降价 maximum 最大值 median, medium 中数(把数字按大小排列,若为奇数项,则中间那项就为中数,若为偶数项,则中间两项的算术平均值为中数。例:(1,3,8)其中数为3;(1,3,8,9)其中数为(3+8)/2=5) median of a triangle 三角形的中线 mid point 中点 minimum 最小值 minus 减 multiplication 乘法 multiple 倍数 multiply 乘 natural number 自然数 negative number 负数 nonzero 非零 number lines 数线 numerator 分子 obtuse angle 钝角 octagon 八边形 odd number 奇数 ordinate 纵坐标 overlap 重叠 parallel lines 平行线 parallelogram 平行四边形 pentagon 五边形 per capita 每人 perimeter 周长 permutation 排列 perpendicular lines 垂直线 pyramid 三角锥 plane 平面 plus 加 polygon 多边形 positive number 正数 power 次方(2的5次方=the fifth power of 2) prime factor 质因子 prime number 质数 product 乘积 profit 利润 proper fraction 真分数 proportion 比例 purchasing price 买价 quadrant 象限 quadrihedrogon 四角锥 quadrilateral 四边形 quotient 商 ratio 比例 rational 有理数 radius 半径(复数为radii) radian 弧度 real number 实数 reciprocal 倒数 rectangle 长方形 rectangular prism 长方体 reduced 减少 regular polygon 正多边形 remainder 余数 retail value 零售价 rhombus 菱形 right angle 直角 right triangle 直角三角形 round 四舍五入 sale price 卖价 segment 线段 set 集合 sequence 数列 scalene triangle 不等边三角形 side 边长 simple interest 单利 slope 斜率 solution (方程的)解 speed 过度 sphere 球体(表面积=4*pi*r*r,体积=4/3*pi*r*r*r) square 1.平方数,平方 2.正方形 square root 平方根 straight angle 平角 subtract 减 subtraction 减法 sum 和 surface area 表面积 supplementary angles 补角 tangent 相切 tenths" digit 十分位 tenth 十分位 tie 并列,打平 times 倍 total 1.总数(用于加法中,相当于+) 2.总计(用于减法中,相当于-) to the nearest 最接近的 trapezoid 梯形 triangle 三角形 two digits 2位 units" digit 个位 veiocity 速度 vertex angle 顶角 vertical angle 对顶角 volume 体积 whole number 整数 width 宽 3-digit number 三位数 注: 1. a only if b 表示a==>b 2. a if only b 表示b==>a
2023-01-01 11:55:521

ssat 数学必备词汇

你可以去买本BARRON`S,然后上面的数学部分挨个练,遇见不会的单词就查,尤其是各部分的标题,那里有的数学词汇,绝对够用了,不过就是的你自己查(加强记忆嘛。。)归真出来就是SSAT的数学词汇了,我当时就是这么整的。。。。。挺管用的(个人观点)
2023-01-01 11:55:572

ssat数学词汇

  1.pyramid 角锥体   2. per capita 每人   3. percentage 百分比   4. plane 平面   5. parentheses 括号   6. plane geometry 平面几何   7.polynomial 多项式   8. parallel lines 平行线   9. parallelogram 平行四边形   10. penny 一美分硬币   11. pentagon 五边形   12. polygon 多边形   13. perpendicular 垂直   14. perimeter 周长   15. Pythagorean theorem 勾股定理   16. pie chart 扇面图   17. profit 利润   18. positive number 正数   19. prime number 质数   20. power 乘方   21. product 积   22. proper fraction 真分数   23. proportion 比例   24. permutation 排列   25. pyramid 角锥体   26. proper subset 真子集   27. prime factor 质因子   28. pint 品脱   29. progression 数列   30. equivalent fractions 等值分数   31. equivalent equation 同解方程式,等价方程式   32. equivalence relation 等价关系   33. even integer, even number 偶数   34. exponent 指数,幂   35. equation 方程   36. equation of the first degree 一次方程   37. endpoint 端点   38. estimation 近似   39. edge 棱   40. equal 相等   41. equilateral triangle 等边三角形   42. equilateral 等边形   43. equilateral hyperbola 等轴双曲线   44. exterior angle 外角   45. extent 维数 A plane figure is 2-extent   46. exterior angles on the same side of the transversal 同旁外角   47. bar graph 柱状图   48. base 底边,乘幂的底数,如 中的6   49. binomial 二项式   50. bisect 平分   51. brace 双,如:a brace of dogs 两只狗   52. billion 10亿   53. inequality 不等式   54. improper fraction 假分数,如   55. infinite decimal 无穷小数   56. increase 增加   57. increase to 增加到   58. increase by 增加了   59. interest 利息   60. integer 整数   61. inverse proportion 反比   62. irrational number 无理数   63. incomplete quadratic equation 不完全二次方程,如: +4=0   64. intercept 截距   65. intercalary year (leap year) 闰年(366天)   66. included angle 夹角   67. included side 夹边   68. irrational 无理数   69. intersect 相交   70. inch 英寸   71. inscribed triangle 内接三角形   72. interior angle 内角   73. isosceles triangle 等腰三角形   74.inference 推理,推论   75. infinitesimal calculus 微积分   76. infinity 无穷大   77. infinitesimal 无穷小   78. integrable 可积分的   79. integral 积分   80. integral calculus 积分学   81. integral domain 整环,整域   82. integrand 被积函数   83. integrating factor 积分因子   84. inverse function 反函数   85. inverse 倒数   86. least common denominator 最小公分母   87. least common multiple 最小公倍数   88. least possible value 最小可能值   89. literal coefficient 字母系数   90. like terms 同类项   91. length 长   92. line 直线   93. less than 小于   94. line segment 线段   95. list price 标价   96. leg 三角形的直角边   97. linear 一次的,线性的   98. linear algebra 线性代数   99. linear equation 线性方程,一次方程   100. linear function 线性函数,一次函数   101. linear transformation 线性变损,一次变换   102. line graph 线图   103. line integral 线积分   104. negative number 负数   105. negative whole number 负整数   106. nickel 五美分硬币   107. numerator 分子   108. numerical coefficient 数字系数   109. null set (empty set) 空集   110. number line 数轴   111. number theory 数论   112. numerical analysis 数值分析   113. natural logarithm 自然对数   114. natural number 自然数   115. nonagon 九边形   116. nonnegative 非负的`   117. normal matrix 正规矩阵   118. apiece 每人   119. absolute value 绝对值,如 | 5 | = | -5 |   120. add (addition) 加(加法)   121. average value 平均值(arithmetic mean)   122. algebra 代数   123. algebraic expression 代数式   124. algebraic fraction 分式,如   125. algebraic term 代数项   126. arithmetic mean 算术平均值   127. arithmetic progression ( sequence ) 等差数列   128. adjacent angle 邻角   129. amount to 合计   130. angle 角   131. alternate angle 内错解   132. alternant 交替函数,交替行列式   133. approximate 近似   134. abscissa 横坐标   135. angle bisector 角平分线   136. altitude 高   137. arc 弧   138. arm 直角三角形的股   139. acute angle 锐角   140. adjacent vertices 相邻顶点   141. minuend 补减数   142. markup (markdown ) 涨价(降价)   143. minus ( take away ) 减,负,负数   144. mixed decimal 混合小数   145. mixed number 带分数   146. multiply ( times ) 乘   147. minute 分(角的度量单位,60分子= 1 degree)   148. margin 利润   149. mid point 中点   150. minor axis (椭圆)短轴   151. minor 子行列式,子式   152. minimum 最小值   153. multilateral 多边的   154. multinomial 多项式   155. multiple 倍数   156. multiplicand 被乘数   157. multiplication 乘法   158. multiplier 乘数   159. monomial 单项式   160. midpoint 中点   161. maximum 极大值   162. meter 米   163. micron 微米   164. mean 平均数   165. mode 众数   166. median 中数   167. median of a triangle 三角形的中线   168. common denominator 公分母   169. common factor 公因子   170. common multiple 公倍数   171. common base triangles 共底三角形   172. common divisor 公约数   173. common fraction 普通分数,简分数   174. common logarithm 常用对数   175. common ratio 公比   176. common year 平年,指365天的一年   177. complex fraction 繁分数   178. complex plane 复平数   179. complex number 复数,如T+i   180. complex root 复根   181. complex conjugate 复共轭,复共轭矩阵   182. composite number 合数,除1及本身外还有其他因子的数   183. consecutive number 连续整数   184. cubic meter 立方米   185. consecutive even integer 连续偶数   186. consecutive odd integer 连续奇数   187. cross multiply 交叉相乘   188. cross section 横截面   189. convex polygon 凸多边形   190. concave polygon 凹多边形   191. coefficient 系数   192. cent 美分   193. complete quadratic equation 完全二次方程,如 + +1 = 0   194. complementary angle 余角   195. complementary function 余函数   196. constant 常数   197. cube 立方体,立方数   198. cube root 立方根   199. central angle 圆心角   200. circle 圆   201. clockwise 顺时针方向   202. center of a circle 圆心   203. chord 弦   204. circular cylinder 圆柱体   205. congruent 全等的   206. corresponding angle 同位角   207. cardinal 基数   208. centigrade 摄氏   209. compounded interest 复利   210. circumference 周长   211. concentric circles 同心圆   212. circle graph 扇面图,圆形图   213. cumulative graph 累积图   214. coordinate system 坐标系   215. coordinates 坐标系   216. the extremes of a proportion 比例外项   217. the means of a proportion 比例内项   218. tens 十位   219. tenths 十分位   220. trinomial 三项式   221. tangent 切线   222. transversal 截线   223. trapezoid 梯形   224. table 表格   225. tie 并列,打平   226. triangle 三角形   227. triangle inequality 三角不等式   228. trigonometric function 三角函数   229. trigonometry 三角学   230. to the nearest 四舍五入   231. vertex ( vertices ) 顶点   232. variable 变量   233. units 个位   234. unit 单位   235. weighted average 加权平均值   236. vertical angle 对顶角   237. volume 体积   238. width 宽   239. whole number 整数   240. vulgar fraction 普通分数,与decimal fraction 相对   241. union 并集   242. yard 码   243. zero 零   244. coordinates 坐标   245. cone 圆锥 ( 体积 = •h )   246. combination 外切   247. combination 组合 =   248. quadrihedron 三角锥   249. quotient 商   250. quadratic equation 二次方程   251. quadrilateral 四边形   252. quadrant 象限   253. quantic 齐次,多元齐次多项式   254. quart 夸脱(1   255. quarter 四分之一   256. quartic equation 四次方程   257. foot 英尺   258. factor 因子   259. Fahrenheit 华氏   260. fraction 分数   261. factorable quadratic equation 可因式分解的二次方程   262. face of a solid 立体的面   263. Fourier series 傅立吓定理   264. Fourier transform 傅立吓变换   265. factorial 阶乘   266. factorization 因式分解   267. geometric mean 几何平均数,如   268. gross 罗(= 12 打)   269. geometric progression ( sequence ) 等比数列   270. greater than 大于   271. gallon 加仑(1 gallon = 4 quart)   272. graph 图   273. graph theory 图论   274. geometry 几何   275. hyperbola 双曲线   276. hexagon 六边形   277. hypotenuse 斜边   278. odd integer, odd number 奇数   279. original equation 原方程   280. obtuse angle 钝角   281. octagon 八角形   282. origin 原点   283. ordinate 纵坐标   284. ordinary scale 十进制   285. opposite (直角三角形中的)对边   286. oblateness ( ellipse ) 椭圆形   287. ordinal 序数   288. overlap 重叠   289. oblique 斜三角形   290. sign 符号   291. simple ( common ) fraction 简分数   292. solution set 解集   293. square root 平方根   294. subtract 减   295. subtrahend 被减数   296. sum 和   297. sequence 序列,数列   298. similar terms 同类项   299. slope 斜率   300. simple interest 单利   301. score 20   302. Simultaneous equations 联立方程组   303. solution 解,答案   304. set 集合   305. sphere 球体温表( 表面积 )   306. side 边长   307. segment of a circle 弧形   308. semicircle 半圆   309. solid 立体   310. square 正方形,平方   311. straight angle 平角,即180度角   312. straight line 直线   313. surface area 表面积   314. supplementary angles 补角   315. solid geometry 立体几何   316. square matrix 方阵   317. square measure 平方单位制   318. surface integral 面积分   319. scalene cylinder 斜柱体   320. scalene triangle 不等边三角形   321. ratio 比率   322. real number 实数   323. retail price 零售价   324. round off 四舍五入   325. root 根   326. radical sign 根号   327. radius 半径   328. rectangle 长方形   329. regular polygon 正多边形   330. rhombus 菱形   331. right circular cylinder 直圆柱体   332. right triangle 直角三角形   333. right angle 直角   334. rectangular solid 长方体   335. reciprocal 倒数   336. radian 弧度   337. range 值域   338. remainder 余数   339. remote interior angle 不相邻内角   340. rectangular coordinate 直角坐标系   341. rational number 有理数   342. rectangular hyperbola 等轴双曲线   343. recurring decimal 循环小数   3
2023-01-01 11:56:451

有x的单词有哪些

有x的单词:taxi、mix、ox、fix、exist、excuse、except、tax、exam、extra、X-axis、Xchomosome、Xmas、X-ray 、xylophone、Xenon、X-frame、Xerox等等。 扩展资料   部分单词解析:1、X-axis:n. X轴;横坐标轴   短语   X-axis CPC 正交轴逆流色谱   abscissa X-axis 横坐标   X-axis amplifier X轴信号放大器   2、Xmas:n. 圣诞节(等于Christmas)   短语   XMAS christmas 圣诞节   Starlight Xmas 圣诞版 ; 星光满布X ; 圣诞节星光 ; 星光   Plump Xmas 普拉姆的"圣诞 ; 破解存档   Father Xmas 不一样的爸爸 ; 父亲克斯玛斯   3、X-ray   vt. 用X光线检查   vi. 使用X光   n. 射线;射线照片   adj. X光的;与X射线有关的   短语   X x-ray 射线   X Blu-ray BOX 期间限定生产   american history x blu-ray 野兽良民
2023-01-01 11:56:501

纵坐标和横坐标的英文怎么说?

纵坐标和横坐标Verticalandabscissa
2023-01-01 11:56:563

带有ae的英语单词有哪些至少20个

可能性不大,20个。
2023-01-01 11:57:072

美国数学竞赛(AMC)的单词,要全

The American Mathematics Competition
2023-01-01 11:57:152

AMC竞赛 单词

你自己排一下吧,可以熟悉单词,到时候考试好找
2023-01-01 11:57:242

求一些初一使用的数学名词的英语形式

这些在数学课本后面都会有说明的吧?!
2023-01-01 11:57:334

美国数学竞赛(AMC)的单词,要全

American Mathematics Competition
2023-01-01 11:57:473

美国AMC12常规词汇、急需!!!!!!!!!!!

就解决斤斤计较斤斤计较斤斤计较斤斤计较斤斤计较斤斤计较斤斤计较斤斤计较斤斤计较
2023-01-01 11:57:582

国外数学的常用词汇

给你3个网站,保你能找到所有数学英语http://www.biox.cn/Foreign/200608/20060828114314_57061.shtmlhttp://www.biox.cn/Foreign/List_596.shtmlhttp://www.hao360.com/page/details_words.asp?id=4039代数部分1.有关数学运算add,plus加�subtract减�difference差��multiply,times乘�product积�divide除�divisible可被整除的�dividedevenly被整除�dividend被除数,红利�divisor因子,除数�quotient商�remainder余数��factorial阶乘�power乘方�radicalsign,rootsign根号�roundto四舍五入�tothenearest四舍五入2.有关集合union并集�proper subset真子集�solution set解集��3.�有关代数式、方程和不等式algebraic term代数项�like terms,similar terms同类项�numerical coefficient数字系数�literal coefficient字母系数��inequality不等式�triangle inequality三角不等式��range值域��original equation原方程�equivalent equation同解方程,等价方程�linear equation线性方程(e.g.5�x�+6=22)�4.�有关分数和小数proper fraction真分数�improper fraction假分数�mixed number带分数�vulgar fraction,common fraction普通分数�simple fraction简分数�complex fraction繁分数��numerator分子�denominator分母�(least)common denominator(最小)公分母�quarter四分之一�decimal fraction纯小数�infinite decimal无穷小数�recurring decimal循环小数�tenthsunit十分位��5.基本数学概念��arithmetic mean算术平均值�weighted average加权平均值�geometric mean几何平均数��exponent指数,幂�base乘幂的底数,底边�cube立方数,立方体�square root平方根�cube root立方根��common logarithm常用对数��digit数字�constant常数�variable变量��inversefunction反函数�complementary function余函数�linear一次的,线性的�factorization因式分解�absolute value绝对值,e.g.|-32|=32�round off四舍五入�6.�有关数论�natural number自然数�positive number正数�negative number负数�odd integer,odd number奇数�even integer,even number偶数�integer,whole number整数�positive whole number正整数�negative whole number负整数��consecutive number连续整数�rea lnumber,rational number实数,有理数�irrational(number)无理数��inverse倒数�composite number合数e.g.4,6,8,9,10,12,14,15……�prime number质数e.g.2,3,5,7,11,13,15……注意:所有的质数(2除外)都是奇数,但奇数不一定是质数reciprocal倒数��common divisor公约数�multiple倍数�(least)common multiple(最小)公倍数��(prime)factor(质)因子�common factor公因子��ordinaryscale,decimalscale十进制�nonnegative非负的��tens十位�units个位��mode众数�median中数��common ratio公比��7.�数列arithmetic progression(sequence)等差数列�geometric progression(sequence)等比数列��8.�其它�approximate近似�(anti)clockwise(逆)顺时针方向�cardinal基数�ordinal序数�directproportion正比�distinct不同的�estimation估计,近似�parentheses括号�proportion比例�permutation排列�combination组合�table表格�trigonometric function三角函数�unit单位,位�几何部分1.所有的角alternate angle内错角�corresponding angle同位角�vertical angle对顶角�central angle圆心角�interior angle内角�exterior angle外角�supplement aryangles补角�complement aryangle余角�adjacent angle邻角�acute angle锐角�obtuse angle钝角�right angle直角�round angle周角�straight angle平角�included angle夹角��2.�所有的三角形equilateral triangle等边三角形�scalene triangle不等边三角形�isosceles triangle等腰三角形�right triangle直角三角形�oblique斜三角形�inscribed triangle内接三角形��3.�有关收敛的平面图形,除三角形外�semicircle半圆�concentric circles同心圆�quadrilateral四边形�pentagon五边形�hexagon六边形�heptagon七边形�octagon八边形�nonagon九边形�decagon十边形�polygon多边形�parallelogram平行四边形�equilateral等边形�plane平面�square正方形,平方�rectangle长方形�regular polygon正多边形�rhombus菱形�trapezoid梯形��4.�其它平面图形arc弧�line,straight line直线�line segment线段�parallel lines平行线�segment of a circle弧形��5.�有关立体图形cube立方体,立方数�rectangular solid长方体�regular solid/regular polyhedron正多面体�circular cylinder圆柱体�cone圆锥�sphere球体�solid立体的��6.�有关图形上的附属物altitude高�depth深度�side边长�circumference,perimeter周长�radian弧度�surface area表面积�volume体积�arm直角三角形的股�cros ssection横截面�center of acircle圆心�chord弦�radius半径�angle bisector角平分线�diagonal对角线�diameter直径�edge棱�face of a solid立体的面�hypotenuse斜边�included side夹边�leg三角形的直角边�medianofatriangle三角形的中线�base底边,底数(e.g.2的5次方,2就是底数)�opposite直角三角形中的对边�midpoint中点�endpoint端点�vertex(复数形式vertices)顶点�tangent切线的�transversal截线�intercept截距��7.�有关坐标��coordinate system坐标系�rectangular coordinate直角坐标系�origin原点�abscissa横坐标�ordinate纵坐标�numberline数轴�quadrant象限�slope斜率�complex plane复平面��8.�其它plane geometry平面几何�trigonometry三角学�bisect平分�circumscribe外切�inscribe内切�intersect相交�perpendicular垂直�pythagorean theorem勾股定理�congruent全等的�multilateral多边的�其它��1.�单位类�cent美分�penny一美分硬币�nickel5美分硬币�dime一角硬币�dozen打(12个)�score廿(20个)�Centigrade摄氏�Fahrenheit华氏�quart夸脱�gallon加仑(1gallon=4quart)�yard码�meter米�micron微米�inch英寸�foot英尺�minute分(角度的度量单位,60分=1度)�squaremeasure平方单位制�cubicmeter立方米�pint品脱(干量或液量的单位)��2.�有关文字叙述题,主要是有关商业intercalary year(leapyear)闰年(366天)�common year平年(365天)�depreciation折旧�down payment直接付款�discount打折�margin利润�profit利润�interest利息�simple interest单利�compounded interest复利�dividend红利�decrease to减少到�decrease by减少了�increase to增加到�increase by增加了�denote表示�list price标价�markup涨价�per capita每人�ratio比率�retail price零售价�tie打平3. Mathematical Terms: complete set 完全集 finite 有限的 relation 关系 element 元素 inclusion 包含 set 集合 empty set 空集 infinite 无限的 subset 子集 equality 相等 integer 整数 proper subset 真子集 equal 等于 rational 有理的 universal 全集
2023-01-01 11:58:071

matlab语言翻译,谁帮我翻译一段,谢谢

功能(长度,宽度,TTT数,速度,时间)%的长度:仿真场景长度%宽度:仿真场景宽度%民:汽车数量%的速度:与正向或反向%时间车速度:intervalcarnum =民/ 4;%的两种方式lanefda =四兰特(1,carnum)。*长度;%的第一驱动abscissasda =兰特(1,carnum)。*长度;%的第二驱动abscissatda =兰特(1,carnum)。*长度;%第三驱动abscissalda =兰特(1,carnum)。*长度;%去年驱动abscissafdo =(1 / 8)×宽;第一驱动ordinatesdo =(% 3 / 8)×宽;%的第二驱动ordinatetdo =(5 / 8)×宽;%第三驱动ordinateldo =(7 / 8)×宽;%去年驱动ordinatespeed1 =速度;%提出speedspeed2 =速度;%的反向速度%组的第一个节点是一个源nodex0=y0 = FDO;FDA(1);%的全球distance1,distance2,distance3,distance4for我= 1:carnum distance1(我)= sqrt((fdo-x0)^ 2 +(FDA(我)- y0)^;2)访问我= 1:carnum distance2(我)= sqrt((2 +(^ sdo-x0)SDA(我)- y0)^;2)访问我= 1:carnum distance3(我)= sqrt((tdo-x0)^ 2 +(TDA(我)- y0)^;2)访问我= 1:carnum远处看过(我)= sqrt((ldo-x0)^ 2 +(LDA(我)- y0)^ 2);%的时间结束当前的横坐标positionfcp = FDA + Speed1 *时间后;SCP = SDA + Speed1 *时间;TCP = TDA + speed2 *时间;LCP = LDA + speed2 *时间;%也设置第一个节点是一个源nodecx0 = FDO;cy0 = FCP(1);%的全球cdistance1,cdistance2,cdistance3,cdistance4for我= 1:carnum cdistance1(我)= sqrt((fdo-x0)^ 2 +(FCP(我)- y0)^;2)访问我= 1:carnum cdistance2(我)= sqrt((sdo-x0)^ 2 +(SCP(我)- y0)^;2)访问我= 1:carnum cdistance3(我)= sqrt((tdo-x0)^ 2 +(TCP(我)- y0)^;2)访问我= 1:carnum cdistance4(我)= sqrt((ldo-x0)^ 2 +(LCP(我)- y0)^ 2);结束
2023-01-01 11:58:162

C++做一个点类的问题!!

5555555.........老大你的程序错误太多了。。没法改啊。
2023-01-01 11:58:243

数学里所有名词的翻译

数学 mathematics, maths(BrE), math(AmE) 公理 axiom 定理 theorem 计算 calculation 运算 operation 证明 prove 假设 hypothesis, hypotheses(pl.) 命题 proposition 算术 arithmetic 加 plus(prep.), add(v.), addition(n.) 被加数 augend, summand 加数 addend 和 sum 减 minus(prep.), subtract(v.), subtraction(n.) 被减数 minuend 减数 subtrahend 差 remainder 乘 times(prep.), multiply(v.), multiplication(n.) 被乘数 multiplicand, faciend 乘数 multiplicator 积 product 除 divided by(prep.), divide(v.), division(n.) 被除数 dividend 除数 divisor 商 quotient 等于 equals, is equal to, is equivalent to 大于 is greater than 小于 is lesser than 大于等于 is equal or greater than 小于等于 is equal or lesser than 运算符 operator 平均数mean 算术平均数arithmatic mean 几何平均数geometric mean n个数之积的n次方根 倒数(reciprocal) x的倒数为1/x 有理数 rational number 无理数 irrational number 实数 real number 虚数 imaginary number 数字 digit 数 number 自然数 natural number 整数 integer 小数 decimal 小数点 decimal point 分数 fraction 分子 numerator 分母 denominator 比 ratio 正 positive 负 negative 零 null, zero, nought, nil 十进制 decimal system 二进制 binary system 十六进制 hexadecimal system 权 weight, significance 进位 carry 截尾 truncation 四舍五入 round 下舍入 round down 上舍入 round up 有效数字 significant digit 无效数字 insignificant digit 代数 algebra 公式 formula, formulae(pl.) 单项式 monomial 多项式 polynomial, multinomial 系数 coefficient 未知数 unknown, x-factor, y-factor, z-factor 等式,方程式 equation 一次方程 simple equation 二次方程 quadratic equation 三次方程 cubic equation 四次方程 quartic equation 不等式 inequation 阶乘 factorial 对数 logarithm 指数,幂 exponent 乘方 power 二次方,平方 square 三次方,立方 cube 四次方 the power of four, the fourth power n次方 the power of n, the nth power 开方 evolution, extraction 二次方根,平方根 square root 三次方根,立方根 cube root 四次方根 the root of four, the fourth root n次方根 the root of n, the nth root sqrt(2)=1.414 sqrt(3)=1.732 sqrt(5)=2.236 常量 constant 变量 variable 坐标系 coordinates 坐标轴 x-axis, y-axis, z-axis 横坐标 x-coordinate 纵坐标 y-coordinate 原点 origin 象限quadrant 截距(有正负之分)intercede (方程的)解solution 几何geometry 点 point 线 line 面 plane 体 solid 线段 segment 射线 radial 平行 parallel 相交 intersect 角 angle 角度 degree 弧度 radian 锐角 acute angle 直角 right angle 钝角 obtuse angle 平角 straight angle 周角 perigon 底 base 边 side 高 height 三角形 triangle 锐角三角形 acute triangle 直角三角形 right triangle 直角边 leg 斜边 hypotenuse 勾股定理 Pythagorean theorem 钝角三角形 obtuse triangle 不等边三角形 scalene triangle 等腰三角形 isosceles triangle 等边三角形 equilateral triangle 四边形 quadrilateral 平行四边形 parallelogram 矩形 rectangle 长 length 宽 width 周长 perimeter 面积 area 相似 similar 全等 congruent 三角 trigonometry 正弦 sine 余弦 cosine 正切 tangent 余切 cotangent 正割 secant 余割 cosecant 反正弦 arc sine 反余弦 arc cosine 反正切 arc tangent 反余切 arc cotangent 反正割 arc secant 反余割 arc cosecant 集合aggregate 元素 element 空集 void 子集 subset 交集 intersection 并集 union 补集 complement 映射 mapping 函数 function 定义域 domain, field of definition 值域 range 单调性 monotonicity 奇偶性 parity 周期性 periodicity 图象 image 数列,级数 series 微积分 calculus 微分 differential 导数 derivative 极限 limit 无穷大 infinite(a.) infinity(n.) 无穷小 infinitesimal 积分 integral 定积分 definite integral 不定积分 indefinite integral 复数 complex number 矩阵 matrix 行列式 determinant 圆 circle 圆心 centre(BrE), center(AmE) 半径 radius 直径 diameter 圆周率 pi 弧 arc 半圆 semicircle 扇形 sector 环 ring 椭圆 ellipse 圆周 circumference 轨迹 locus, loca(pl.) 平行六面体 parallelepiped 立方体 cube 七面体 heptahedron 八面体 octahedron 九面体 enneahedron 十面体 decahedron 十一面体 hendecahedron 十二面体 dodecahedron 二十面体 icosahedron 多面体 polyhedron 旋转 rotation 轴 axis 球 sphere 半球 hemisphere 底面 undersurface 表面积 surface area 体积 volume 空间 space 双曲线 hyperbola 抛物线 parabola 四面体 tetrahedron 五面体 pentahedron 六面体 hexahedron菱形 rhomb, rhombus, rhombi(pl.), diamond 正方形 square 梯形 trapezoid 直角梯形 right trapezoid 等腰梯形 isosceles trapezoid 五边形 pentagon 六边形 hexagon 七边形 heptagon 八边形 octagon 九边形 enneagon 十边形 decagon 十一边形 hendecagon 十二边形 dodecagon 多边形 polygon 正多边形 equilateral polygon 相位 phase 周期 period 振幅 amplitude 内心 incentre(BrE), incenter(AmE) 外心 excentre(BrE), excenter(AmE) 旁心 escentre(BrE), escenter(AmE) 垂心 orthocentre(BrE), orthocenter(AmE) 重心 barycentre(BrE), barycenter(AmE) 内切圆 inscribed circle 外切圆 circumcircle 统计 statistics 平均数 average 加权平均数 weighted average 方差 variance 标准差 root-mean-square deviation, standard deviation 比例 propotion 百分比 percent 百分点 percentage 百分位数 percentile 排列 permutation 组合 combination 概率,或然率 probability 分布 distribution 正态分布 normal distribution 非正态分布 abnormal distribution 图表 graph 条形统计图 bar graph 柱形统计图 histogram 折线统计图 broken line graph 曲线统计图 curve diagram 扇形统计图 pie diagabscissa 横坐标 absolute value 绝对值 acute angle 锐角 adjacent angle 邻角 addition 加 algebra 代数 altitude 高 angle bisector 角平分线 arc 弧 area 面积 arithmetic mean 算术平均值(总和除以总数) arithmetic progression 等差数列(等差级数) arm 直角三角形的股 at 总计(乘法) average 平均值 base 底 be contained in 位于...上 bisect 平分 center 圆心 chord 弦 circle 圆形 circumference 圆周长 circumscribe 外切,外接 clockwise 顺时针方向 closest approximation 最相近似的 combination 组合 common divisor 公约数,公因子 common factor 公因子 complementary angles 余角(二角和为90度) composite number 合数(可被除1及本身以外其它的数整除) concentric circle 同心圆 cone 圆锥(体积=1/3*pi*r*r*h) congruent 全等的 consecutive integer 连续的整数 coordinate 坐标的 cost 成本 counterclockwise 逆时针方向 cube 1.立方数 2.立方体(体积=a*a*a 表面积=6*a*a) cylinder 圆柱体 decagon 十边形 decimal 小数 decimal point 小数点 decreased 减少 decrease to 减少到 decrease by 减少了 degree 角度 define 1.定义 2.化简 denominator 分母 denote 代表,表示 depreciation 折旧 distance 距离 distinct 不同的 dividend 1. 被除数 2.红利 divided evenly 被除数 divisible 可整除的 division 1.除 2.部分 divisor 除数 down payment 预付款,定金 equation 方程 equilateral triangle 等边三角形 even number 偶数 expression 表达 exterior angle 外角 face (立体图形的)某一面 factor 因子 fraction 1.分数 2.比例 geometric mean 几何平均值(N个数的乘积再开N次方) geometric progression 等比数列(等比级数) have left 剩余 height 高 hexagon 六边形 hypotenuse 斜边 improper fraction 假分数 increase 增加 increase by 增加了 increase to 增加到 inscribe 内切,内接 intercept 截距 integer 整数 interest rate 利率 in terms of... 用...表达 interior angle 内角 intersect 相交 irrational 无理数 isosceles triangle 等腰三角形 least common multiple 最小公倍数 least possible value 最小可能的值 leg 直角三角形的股 length 长 list price 标价 margin 利润 mark up 涨价 mark down 降价 maximum 最大值 median, medium 中数(把数字按大小排列,若为奇数项,则中间那项就为中数,若为偶数项,则中间两项的算术平均值为中数。例:(1,3,8)其中数为3;(1,3,8,9)其中数为(3+8)/2=5) median of a triangle 三角形的中线 mid point 中点 minimum 最小值 minus 减 multiplication 乘法 multiple 倍数 multiply 乘 natural number 自然数 negative number 负数 nonzero 非零 number lines 数线 numerator 分子 obtuse angle 钝角 octagon 八边形 odd number 奇数 ordinate 纵坐标 overlap 重叠 parallel lines 平行线 parallelogram 平行四边形 pentagon 五边形 per capita 每人 perimeter 周长 permutation 排列 perpendicular lines 垂直线 pyramid 三角锥 plane 平面 plus 加 polygon 多边形 positive number 正数 power 次方(2的5次方=the fifth power of 2) prime factor 质因子 prime number 质数 product 乘积 profit 利润 proper fraction 真分数 proportion 比例 purchasing price 买价 quadrant 象限 quadrihedrogon 四角锥 quadrilateral 四边形 quotient 商 ratio 比例 rational 有理数 radius 半径(复数为radii) radian 弧度 real number 实数 reciprocal 倒数 rectangle 长方形 rectangular prism 长方体 reduced 减少 regular polygon 正多边形 remainder 余数 retail value 零售价 rhombus 菱形 right angle 直角 right triangle 直角三角形 round 四舍五入 sale price 卖价 segment 线段 set 集合 sequence 数列 scalene triangle 不等边三角形 side 边长 simple interest 单利 slope 斜率 solution (方程的)解 speed 过度 sphere 球体(表面积=4*pi*r*r,体积=4/3*pi*r*r*r) square 1.平方数,平方 2.正方形 square root 平方根 straight angle 平角 subtract 减 subtraction 减法 sum 和 surface area 表面积 supplementary angles 补角 tangent 相切 tenths" digit 十分位 tenth 十分位 tie 并列,打平 times 倍 total 1.总数(用于加法中,相当于+) 2.总计(用于减法中,相当于-) to the nearest 最接近的 trapezoid 梯形 triangle 三角形 two digits 2位 units" digit 个位 veiocity 速度 vertex angle 顶角 vertical angle 对顶角 volume 体积 whole number 整数 width 宽 3-digit number 三位数 注: 1. a only if b 表示a==>b 2. a if only b 表示b==>a
2023-01-01 11:58:401

初中数学提中的英语单词

用字典查
2023-01-01 11:58:464

急求!关于数理化的英语单词!

有关与数学的英语单词一.数学中常用符号+: plus X: multiply-: subtract ÷: divideV~: square root |...|: absolute value=: is equal to =/=: is not equal to>: is greater than <: is less than//: is parallel to _|_: is perpendicular to>=: is greater than or equal to (或 no less than)<=: is less than or equal to (或no more than)二.表达相应数目的前缀1:uni-,mono-2:bi-,du-,di-3:tri-,ter-,4:tetra-,quad-,5:penta-,quint,6:hex-,sex-,7:sept-,hapta-,8:oct,9:enn-,10:dec-,deka-,三.数学中常用单词术语abscissa 横坐标absolute value 绝对值acute angle 锐角adjacent angle 邻角addition 加algebra 代数altitude 高angle bisector 角平分线arc 弧area 面积arithmetic mean 算术平均值(总和除以总数)arithmetic progression 等差数列(等差级数)arm 直角三角形的股at 总计(乘法)average 平均值base 底be contained in 位于...上bisect 平分center 圆心chord 弦circle 圆形circumference 圆周长circumscribe 外切,外接clockwise 顺时针方向closest approximation 最相近似的combination 组合common divisor 公约数,公因子common factor 公因子complementary angles 余角(二角和为90度)composite number 合数(可被除1及本身以外其它的数整除)concentric circle 同心圆cone 圆锥(体积=1/3*pi*r*r*h)congruent 全等的consecutive integer 连续的整数coordinate 坐标的cost 成本counterclockwise 逆时针方向cube 1.立方数2.立方体(体积=a*a*a 表面积=6*a*a)cylinder 圆柱体decagon 十边形decimal 小数decimal point 小数点decreased 减少decrease to 减少到decrease by 减少了degree 角度define 1.定义 2.化简denominator 分母denote 代表,表示depreciation 折旧distance 距离distinct 不同的dividend 1. 被除数 2.红利divided evenly 被除数divisible 可整除的division 1.除 2.部分divisor 除数down payment 预付款,定金equation 方程equilateral triangle 等边三角形even number 偶数expression 表达exterior angle 外角face (立体图形的)某一面factor 因子fraction 1.分数 2.比例geometric mean 几何平均值(N个数的乘积再开N次方)geometric progression 等比数列(等比级数)have left 剩余height 高hexagon 六边形hypotenuse 斜边improper fraction 假分数increase 增加increase by 增加了increase to 增加到inscribe 内切,内接intercept 截距integer 整数interest rate 利率in terms of... 用...表达interior angle 内角intersect 相交irrational 无理数isosceles triangle 等腰三角形least common multiple 最小公倍数least possible value 最小可能的值leg 直角三角形的股length 长list price 标价margin 利润mark up 涨价mark down 降价maximum 最大值median, medium 中数(把数字按大小排列,若为奇数项,则中间那项就为中数,若为偶数项,则中间两项的算术平均值为中数。例:(1,3,8)其中数为3;(1,3,8,9)其中数为(3+8)/2=5)median of a triangle 三角形的中线mid point 中点minimum 最小值minus 减multiplication 乘法multiple 倍数multiply 乘natural number 自然数negative number 负数nonzero 非零number lines 数线numerator 分子obtuse angle 钝角octagon 八边形odd number 奇数ordinate 纵坐标overlap 重叠parallel lines 平行线parallelogram 平行四边形pentagon 五边形per capita 每人perimeter 周长permutation 排列perpendicular lines 垂直线pyramid 三角锥plane 平面plus 加polygon 多边形positive number 正数power 次方(2的5次方=the fifth power of 2)prime factor 质因子prime number 质数product 乘积profit 利润proper fraction 真分数proportion 比例purchasing price 买价quadrant 象限quadrihedrogon 四角锥quadrilateral 四边形quotient 商ratio 比例rational 有理数radius 半径(复数为radii)radian 弧度real number 实数reciprocal 倒数rectangle 长方形rectangular prism 长方体reduced 减少regular polygon 正多边形remainder 余数retail value 零售价rhombus 菱形right angle 直角right triangle 直角三角形round 四舍五入sale price 卖价segment 线段set 集合sequence 数列scalene triangle 不等边三角形side 边长simple interest 单利slope 斜率solution (方程的)解speed 过度sphere 球体(表面积=4*pi*r*r,体积=4/3*pi*r*r*r)square 1.平方数,平方 2.正方形square root 平方根straight angle 平角subtract 减subtraction 减法sum 和surface area 表面积supplementary angles 补角tangent 相切tenths" digit 十分位tenth 十分位tie 并列,打平times 倍total 1.总数(用于加法中,相当于+)2.总计(用于减法中,相当于-)to the nearest 最接近的trapezoid 梯形triangle 三角形two digits 2位units" digit 个位veiocity 速度vertex angle 顶角vertical angle 对顶角volume 体积whole number 整数width 宽3-digit number 三位数 物理的:重力 gravity自然科学 nature science 重心 center of gravity物理学 physics 弹力 elastic force麦克斯韦 James Clerk Maxweell 摩擦力 friction force相对论 relativity 静摩擦力 static friction force量子力学 quantum mechanics 滑动摩擦力 sliding friction force微电子力学 microloectronics 平行四边形法则 parallelogram law分力 component force第1章 固体和液体 Solid and Liquid 合力 resultant force晶体 crystal 共点力 concurrent force弹性 elasticity 平衡条件 equilibrium condition液晶 liquid crystal毛细现象 capillarity 第5章 牛顿定律 Newton law牛顿 Isaac Newton第2章 气体 Gases 惯性 inertia流体 fluid 牛顿第一定律 Newton first law压强 ptessure 牛顿第二定律 Newton second law密度 density 质量 mass开尔文 Willam Thomson Kelvin 惠更斯 Christian Huygens热力学温度 thermodynamic temperature 单位 unit查理 Jacques Alexander Cesar Chares 单位制 system of units定律 law 爱因斯坦 Albert Einstein盖-吕萨克 Joseph Louis Gay-Lussax 牛顿第三定律 Newton thrid law玻意尔 Raber Boyle 作用力 acting force理想气体 ideal gas 反作用力 reacting force温度 humidity内能 internal energy 第6章 功和能 Workd and Energy布朗运动 Brown motion 机械能 mechaniacal work分子 molecule 功率 power引力 attraction 瓦特 James Watt斥力 repulsion 能 energy动能 kinetic energy 动能 kinetic energy化学的:二甲亚砜 dimethyl sulfoxide 对酞酸二甲酯 dimethyl terephthalate 二甲基缩醛 dimethylacetal 二甲基乙酰胺 dimethylacetamide 二甲胺 dimethylamine 二甲基苯胺 dimethylaniline 二甲胂 dimethylarsine 二甲苯 dimethylbenzene 二甲基丁二烯橡胶 dimethylbutadiene rubber 二甲基乙醚 dimethylether 二甲基甲酰胺 dimethylformamide 二甲基肼 dimethylhydrazine 二羟甲基脲 dimethylolurea 二甲基成烷 dimethylpentane 卢剔啶 dimethylpyridine 二甲亚砜 dimethylsulphoxide 二甲基对酞酸盐 dimethylterephthalate 二甲基噻吩 dimethylthiophene 二形 dimorphism 硅酸盐砖 dinas brick 双亚硝酸盐 dinitrite 二硝基苯 dinitrobenzene 二硝基甘油 dinitroglycerine 二硝基萘 dinitronaphthalene 二硝基苯酚 dinitrophenol 二硝基甲苯 dinitrotoluene 二壬基苯酚 dinonyl phenol 酞酸二壬酯 dinonyl phthalate 二辛醚 dioctyl ether 反式丁烯二酸二辛酯 dioctyl fumarate [NextPage} 酞酸二辛酯 dioctyl phthalate 癸二酸二辛酯 dioctyl sebacate 二醇 diol 二烯 diolefin 二油精 diolein 闪绿岩 diorite 双糖 diose 地奥甙元 diosgenine 二氧六环 dioxane 二氧化物 dioxide 二氧化氯 dioxide peroxide 二氧吲哚 dioxindole 二氧戊环 dioxolane 提浸染色 dip dyeing 浸洗油 dip oil 二戊烯 dipentene 二肽酶 dipeptidase 二肽 dipeptide 联苯甲酸 diphenic acid 联苯酚 diphenol 联二苯 diphenyl 碳酸二苯酯 diphenyl carbonate 二苯醚 diphenyl ether 二苯基氧 diphenyl oxide 酞酸二苯酯 diphenyl phthalate 碳酰替 diphenyl urea 二苯基乙腈 diphenylacetonitrile 二苯胺 diphenylamine 二苯联苯胺 diphenylbenzidine 二苯基甲醇 diphenylcarbinol 联苯抱氧 diphenylene oxide 芴 diphenylenemethane 二苯胍 diphenylguanidine 二苯肼 diphenylhydrazine 二苯甲酮 diphenylketone 二苯甲烷 diphenylmethane 二苯脲 diphenylurea 双光气 diphosgene 偶极离子 dipolar ion 偶极子 dipole 偶极分子 dipole molecule 偶极矩 dipole moment [NextPage} 浸渍 dipping 浸渍过程 dipping process 浸液折射计 dipping refractometer 浸渍清漆 dipping varnish 二丙基甲酮 dipropyl ketone 酞酸二丙酯 dipropyl phthalate 二丙硫 dipropyl sulfide 二丙二醇 dipropylene glycol 联吡啶 dipyridyl 直接染料 direct color 直接染棉染料 direct cotton dye 直流 direct current
2023-01-01 11:59:001

这45个数学术语用英语怎么说?

GRE&GMAT 代数部分1.有关数学运算add,plus加�subtract减�difference差��multiply,times乘�product积�divide除�divisible可被整除的�dividedevenly被整除�dividend被除数,红利�divisor因子,除数�quotient商�remainder余数��factorial阶乘�power乘方�radicalsign,rootsign根号�roundto四舍五入�tothenearest四舍五入2.有关集合union并集�proper subset真子集�solution set解集��3.�有关代数式、方程和不等式algebraic term代数项�like terms,similar terms同类项�numerical coefficient数字系数�literal coefficient字母系数��inequality不等式�triangle inequality三角不等式��range值域��original equation原方程�equivalent equation同解方程,等价方程�linear equation线性方程(e.g.5�x�+6=22)�4.�有关分数和小数proper fraction真分数�improper fraction假分数�mixed number带分数�vulgar fraction,common fraction普通分数�simple fraction简分数�complex fraction繁分数��numerator分子�denominator分母�(least)common denominator(最小)公分母�quarter四分之一�decimal fraction纯小数�infinite decimal无穷小数�recurring decimal循环小数�tenthsunit十分位��5.基本数学概念��arithmetic mean算术平均值�weighted average加权平均值�geometric mean几何平均数��exponent指数,幂�base乘幂的底数,底边�cube立方数,立方体�square root平方根�cube root立方根��common logarithm常用对数��digit数字�constant常数�variable变量��inversefunction反函数�complementary function余函数�linear一次的,线性的�factorization因式分解�absolute value绝对值,e.g.|-32|=32�round off四舍五入�6.�有关数论�natural number自然数�positive number正数�negative number负数�odd integer,odd number奇数�even integer,even number偶数�integer,whole number整数�positive whole number正整数�negative whole number负整数��consecutive number连续整数�rea lnumber,rational number实数,有理数�irrational(number)无理数��inverse倒数�composite number合数e.g.4,6,8,9,10,12,14,15……�prime number质数e.g.2,3,5,7,11,13,15……注意:所有的质数(2除外)都是奇数,但奇数不一定是质数reciprocal倒数��common divisor公约数�multiple倍数�(least)common multiple(最小)公倍数��(prime)factor(质)因子�common factor公因子��ordinaryscale,decimalscale十进制�nonnegative非负的��tens十位�units个位��mode众数�median中数��common ratio公比��7.�数列arithmetic progression(sequence)等差数列�geometric progression(sequence)等比数列��8.�其它�approximate近似�(anti)clockwise(逆)顺时针方向�cardinal基数�ordinal序数�directproportion正比�distinct不同的�estimation估计,近似�parentheses括号�proportion比例�permutation排列�combination组合�table表格�trigonometric function三角函数�unit单位,位�几何部分1.所有的角alternate angle内错角�corresponding angle同位角�vertical angle对顶角�central angle圆心角�interior angle内角�exterior angle外角�supplement aryangles补角�complement aryangle余角�adjacent angle邻角�acute angle锐角�obtuse angle钝角�right angle直角�round angle周角�straight angle平角�included angle夹角��2.�所有的三角形equilateral triangle等边三角形�scalene triangle不等边三角形�isosceles triangle等腰三角形�right triangle直角三角形�oblique斜三角形�inscribed triangle内接三角形��3.�有关收敛的平面图形,除三角形外�semicircle半圆�concentric circles同心圆�quadrilateral四边形�pentagon五边形�hexagon六边形�heptagon七边形�octagon八边形�nonagon九边形�decagon十边形�polygon多边形�parallelogram平行四边形�equilateral等边形�plane平面�square正方形,平方�rectangle长方形�regular polygon正多边形�rhombus菱形�trapezoid梯形��4.�其它平面图形arc弧�line,straight line直线�line segment线段�parallel lines平行线�segment of a circle弧形��5.�有关立体图形cube立方体,立方数�rectangular solid长方体�regular solid/regular polyhedron正多面体�circular cylinder圆柱体�cone圆锥�sphere球体�solid立体的��6.�有关图形上的附属物altitude高�depth深度�side边长�circumference,perimeter周长�radian弧度�surface area表面积�volume体积�arm直角三角形的股�cros ssection横截面�center of acircle圆心�chord弦�radius半径�angle bisector角平分线�diagonal对角线�diameter直径�edge棱�face of a solid立体的面�hypotenuse斜边�included side夹边�leg三角形的直角边�medianofatriangle三角形的中线�base底边,底数(e.g.2的5次方,2就是底数)�opposite直角三角形中的对边�midpoint中点�endpoint端点�vertex(复数形式vertices)顶点�tangent切线的�transversal截线�intercept截距��7.�有关坐标��coordinate system坐标系�rectangular coordinate直角坐标系�origin原点�abscissa横坐标�ordinate纵坐标�numberline数轴�quadrant象限�slope斜率�complex plane复平面��8.�其它plane geometry平面几何�trigonometry三角学�bisect平分�circumscribe外切�inscribe内切�intersect相交�perpendicular垂直�pythagorean theorem勾股定理�congruent全等的�multilateral多边的�其它��1.�单位类�cent美分�penny一美分硬币�nickel5美分硬币�dime一角硬币�dozen打(12个)�score廿(20个)�Centigrade摄氏�Fahrenheit华氏�quart夸脱�gallon加仑(1gallon=4quart)�yard码�meter米�micron微米�inch英寸�foot英尺�minute分(角度的度量单位,60分=1度)�squaremeasure平方单位制�cubicmeter立方米�pint品脱(干量或液量的单位)��2.�有关文字叙述题,主要是有关商业intercalary year(leapyear)闰年(366天)�common year平年(365天)�depreciation折旧�down payment直接付款�discount打折�margin利润�profit利润�interest利息�simple interest单利�compounded interest复利�dividend红利�decrease to减少到�decrease by减少了�increase to增加到�increase by增加了�denote表示�list price标价�markup涨价�per capita每人�ratio比率�retail price零售价�tie打平摘自中国教育热线
2023-01-01 11:59:056

三角形的边,英语怎么说?

Triangles sides
2023-01-01 11:59:304

数学英语翻译

你确定这句子是对的?
2023-01-01 11:59:452

数学名词的英文翻译

相等次级组含量
2023-01-01 11:59:532

关于几个数学英语单词

distribution分配, 分发, 配给物, 销售, 法院对无遗嘱死亡者财产的分配, 分布状态, 区分, 分类发送,发行integer[5intidVE]n.整数fraction[5frAkFEn]n.小部分, 片断, 分数addition[E5diFEn]n.加, 加起来, 增加物, 增加, 加法commutation[7kCmju(:)5teiFEn]n.交换我建议你到YWHC上看看,中英文对照网 不错的有发音
2023-01-01 12:00:054

关于数学单位的英语单词有哪些

centimeter厘米 meter米 kilometer千米
2023-01-01 12:00:194

求,和数学单位有关的英语单词,要五个!

m cm mm km ml L
2023-01-01 12:00:334

三角形的边,英语怎么说?

Side of Triangle -------------- 各种数学名词的英语翻译 数学 mathematics, maths(BrE), math(AmE) 公理 axiom 定理 theorem 计算 calculation 运算 operation 证明 prove 假设 hypothesis, hypotheses(pl.) 命题 proposition 算术 arithmetic 加 plus(prep.), add(v.), addition(n.) 被加数 augend, summand 加数 addend 和 sum 减 minus(prep.), subtract(v.), subtraction(n.) 被减数 minuend 减数 subtrahend 差 remainder 乘 times(prep.), multiply(v.), multiplication(n.) 被乘数 multiplicand, faciend 乘数 multiplicator 积 product 除 divided by(prep.), divide(v.), division(n.) 被除数 dividend 除数 divisor 商 quotient 等于 equals, is equal to, is equivalent to 大于 is greater than 小于 is lesser than 大于等于 is equal or greater than 小于等于 is equal or lesser than 运算符 operator 平均数mean 算术平均数arithmatic mean 几何平均数geometric mean n个数之积的n次方根 倒数(reciprocal) x的倒数为1/x 有理数 rational number 无理数 irrational number 实数 real number 虚数 imaginary number 数字 digit 数 number 自然数 natural number 整数 integer 小数 decimal 小数点 decimal point 分数 fraction 分子 numerator 分母 denominator 比 ratio 正 positive 负 negative 零 null, zero, nought, nil 十进制 decimal system 二进制 binary system 十六进制 hexadecimal system 权 weight, significance 进位 carry 截尾 truncation 四舍五入 round 下舍入 round down 上舍入 round up 有效数字 significant digit 无效数字 insignificant digit 代数 algebra 公式 formula, formulae(pl.) 单项式 monomial 多项式 polynomial, multinomial 系数 coefficient 未知数 unknown, x-factor, y-factor, z-factor 等式,方程式 equation 一次方程 simple equation 二次方程 quadratic equation 三次方程 cubic equation 四次方程 quartic equation 不等式 inequation 阶乘 factorial 对数 logarithm 指数,幂 exponent 乘方 power 二次方,平方 square 三次方,立方 cube 四次方 the power of four, the fourth power n次方 the power of n, the nth power 开方 evolution, extraction 二次方根,平方根 square root 三次方根,立方根 cube root 四次方根 the root of four, the fourth root n次方根 the root of n, the nth root sqrt(2)=1.414 sqrt(3)=1.732 sqrt(5)=2.236 常量 constant 变量 variable 坐标系 coordinates 坐标轴 x-axis, y-axis, z-axis 横坐标 x-coordinate 纵坐标 y-coordinate 原点 origin 象限quadrant 截距(有正负之分)intercede (方程的)解solution 几何geometry 点 point 线 line 面 plane 体 solid 线段 segment 射线 radial 平行 parallel 相交 intersect 角 angle 角度 degree 弧度 radian 锐角 acute angle 直角 right angle 钝角 obtuse angle 平角 straight angle 周角 perigon 底 base 边 side 高 height 三角形 triangle 锐角三角形 acute triangle 直角三角形 right triangle 直角边 leg 斜边 hypotenuse 勾股定理 Pythagorean theorem 钝角三角形 obtuse triangle 不等边三角形 scalene triangle 等腰三角形 isosceles triangle 等边三角形 equilateral triangle 四边形 quadrilateral 平行四边形 parallelogram 矩形 rectangle 长 length 宽 width 周长 perimeter 面积 area 相似 similar 全等 congruent 三角 trigonometry 正弦 sine 余弦 cosine 正切 tangent 余切 cotangent 正割 secant 余割 cosecant 反正弦 arc sine 反余弦 arc cosine 反正切 arc tangent 反余切 arc cotangent 反正割 arc secant 反余割 arc cosecant 补充: 集合aggregate 元素 element 空集 void 子集 subset 交集 intersection 并集 union 补集 complement 映射 mapping 函数 function 定义域 domain, field of definition 值域 range 单调性 monotonicity 奇偶性 parity 周期性 periodicity 图象 image 数列,级数 series 微积分 calculus 微分 differential 导数 derivative 极限 limit 无穷大 infinite(a.) infinity(n.) 无穷小 infinitesimal 积分 integral 定积分 definite integral 不定积分 indefinite integral 复数 complex number 矩阵 matrix 行列式 determinant 圆 circle 圆心 centre(BrE), center(AmE) 半径 radius 直径 diameter 圆周率 pi 弧 arc 半圆 semicircle 扇形 sector 环 ring 椭圆 ellipse 圆周 circumference 轨迹 locus, loca(pl.) 平行六面体 parallelepiped 立方体 cube 七面体 heptahedron 八面体 octahedron 九面体 enneahedron 十面体 decahedron 十一面体 hendecahedron 十二面体 dodecahedron 二十面体 icosahedron 多面体 polyhedron 旋转 rotation 轴 axis 球 sphere 半球 hemisphere 底面 undersurface 表面积 surface area 体积 volume 空间 space 双曲线 hyperbola 抛物线 parabola 四面体 tetrahedron 五面体 pentahedron 六面体 hexahedron菱形 rhomb, rhombus, rhombi(pl.), diamond 正方形 square 梯形 trapezoid 直角梯形 right trapezoid 等腰梯形 isosceles trapezoid 五边形 pentagon 六边形 hexagon 七边形 heptagon 八边形 octagon 九边形 enneagon 十边形 decagon 十一边形 hendecagon 十二边形 dodecagon 多边形 polygon 正多边形 equilateral polygon 相位 phase 周期 period 振幅 amplitude 内心 incentre(BrE), incenter(AmE) 外心 excentre(BrE), excenter(AmE) 旁心 escentre(BrE), escenter(AmE) 垂心 orthocentre(BrE), orthocenter(AmE) 重心 barycentre(BrE), barycenter(AmE) 内切圆 inscribed circle 外切圆 circumcircle 统计 statistics 平均数 average 加权平均数 weighted average 方差 variance 标准差 root-mean-square deviation, standard deviation 比例 propotion 百分比 percent 百分点 percentage 百分位数 percentile 排列 permutation 组合 combination 概率,或然率 probability 分布 distribution 正态分布 normal distribution 非正态分布 abnormal distribution 图表 graph 条形统计图 bar graph 柱形统计图 histogram 折线统计图 broken line graph 曲线统计图 curve diagram 扇形统计图 pie diagram -------------- 数学中常用单词术语 abscissa 横坐标 absolute value 绝对值 acute angle 锐角 adjacent angle 邻角 addition 加 algebra 代数 altitude 高 angle bisector 角平分线 arc 弧 area 面积 arithmetic mean 算术平均值(总和除以总数) arithmetic progression 等差数列(等差级数) arm 直角三角形的股 at 总计(乘法) average 平均值 base 底 be contained in 位于...上 bisect 平分 center 圆心 chord 弦 circle 圆形 circumference 圆周长 circumscribe 外切,外接 clockwise 顺时针方向 closest approximation 最相近似的 combination 组合 common divisor 公约数,公因子 common factor 公因子 complementary angles 余角(二角和为90度) composite number 合数(可被除1及本身以外其它的数整除) concentric circle 同心圆 cone 圆锥(体积=1/3*pi*r*r*h) congruent 全等的 consecutive integer 连续的整数 coordinate 坐标的 cost 成本 counterclockwise 逆时针方向 cube 1.立方数 2.立方体(体积=a*a*a 表面积=6*a*a) cylinder 圆柱体 decagon 十边形 decimal 小数 decimal point 小数点 decreased 减少 decrease to 减少到 decrease by 减少了 degree 角度 define 1.定义 2.化简 denominator 分母 denote 代表,表示 depreciation 折旧 distance 距离 distinct 不同的 dividend 1. 被除数 2.红利 divided evenly 被除数 divisible 可整除的 division 1.除 2.部分 divisor 除数 down payment 预付款,定金 equation 方程 equilateral triangle 等边三角形 even number 偶数 expression 表达 exterior angle 外角 face (立体图形的)某一面 factor 因子 fraction 1.分数 2.比例 geometric mean 几何平均值(N个数的乘积再开N次方) geometric progression 等比数列(等比级数) have left 剩余 height 高 hexagon 六边形 hypotenuse 斜边 improper fraction 假分数 increase 增加 increase by 增加了 increase to 增加到 inscribe 内切,内接 intercept 截距 integer 整数 interest rate 利率 in terms of... 用...表达 interior angle 内角 intersect 相交 irrational 无理数 isosceles triangle 等腰三角形 least common multiple 最小公倍数 least possible value 最小可能的值 leg 直角三角形的股 length 长 list price 标价 margin 利润 mark up 涨价 mark down 降价 maximum 最大值 median, medium 中数(把数字按大小排列,若为奇数项,则中间那项就为中数,若为偶数项,则中间两项的算术平均值为中数.例:(1,3,8)其中数为3;(1,3,8,9)其中数为(3+8)/2=5) median of a triangle 三角形的中线 mid point 中点 minimum 最小值 minus 减 multiplication 乘法 multiple 倍数 multiply 乘 natural number 自然数 negative number 负数 nonzero 非零 number lines 数线 numerator 分子 obtuse angle 钝角 octagon 八边形 odd number 奇数 ordinate 纵坐标 overlap 重叠 parallel lines 平行线 parallelogram 平行四边形 pentagon 五边形 per capita 每人 perimeter 周长 permutation 排列 perpendicular lines 垂直线 pyramid 三角锥 plane 平面 plus 加 polygon 多边形 positive number 正数 power 次方(2的5次方=the fifth power of 2) prime factor 质因子 prime number 质数 product 乘积 profit 利润 proper fraction 真分数 proportion 比例 purchasing price 买价 quadrant 象限 quadrihedrogon 四角锥 quadrilateral 四边形 quotient 商 ratio 比例 rational 有理数 radius 半径(复数为radii) radian 弧度 real number 实数 reciprocal 倒数 rectangle 长方形 rectangular prism 长方体 reduced 减少 regular polygon 正多边形 remainder 余数 retail value 零售价 rhombus 菱形 right angle 直角 right triangle 直角三角形 round 四舍五入 sale price 卖价 segment 线段 set 集合 sequence 数列 scalene triangle 不等边三角形 side 边长 simple interest 单利 slope 斜率 solution (方程的)解 speed 过度 sphere 球体(表面积=4*pi*r*r,体积=4/3*pi*r*r*r) square 1.平方数,平方 2.正方形 square root 平方根 straight angle 平角 subtract 减 subtraction 减法 sum 和 surface area 表面积 supplementary angles 补角 tangent 相切 tenths" digit 十分位 tenth 十分位 tie 并列,打平 times 倍 total 1.总数(用于加法中,相当于+) 2.总计(用于减法中,相当于-) to the nearest 最接近的 trapezoid 梯形 triangle 三角形 two digits 2位 units" digit 个位 veiocity 速度 vertex angle 顶角 vertical angle 对顶角 volume 体积 whole number 整数 width 宽 3-digit number 三位数 注: 1. a only if b 表示a==>b 2. a if only b 表示b==>a --------------------------------
2023-01-01 12:00:471

谁能给我一些关于统计的英文的单词??

A abscissa横坐标 absence rate缺勤率 absolute number绝对数 absolute value绝对值 accident error偶然误差 accumulated frequency累积频数 alternative hypothesis备择假设 analysis of data分析资料 analysis of variance(ANOVA)方差分析 arith-log paper算术对数纸 arithmetic mean算术均数 assumed mean假定均数 arithmetic weighted mean加权算术均数 asymmetry coefficient偏度系数 average平均数 average deviation平均差 B bar chart直条图、条图 bias偏性 binomial distribution二项分布 biometrics生物统计学 bivariate normal population双变量正态总体 C cartogram统计图 case fatality rate(or case mortality)病死率 census普查 chi-sguare(X2) test卡方检验 central tendency集中趋势 class interval组距 classification分组、分类 cluster sampling整群抽样 coefficient of correlation相关系数 coefficient of regression回归系数 coefficient of variability(or coefficieut of variation)变异 系数 collection of data收集资料 column列(栏) combinative table组合表 combined standard deviation合并标准差 combined variance(or poolled variance)合并方差 complete survey全面调查 completely correlation完全相关 completely random design完全随机设计 confidence interval可信区间,置信区间 confidence level可信水平,置信水平 confidence limit可信限,置信限 constituent ratio构成比,结构相对数 continuity连续性 control对照 control group对照组 coordinate坐标 correction for continuity连续性校正 correction for grouping归组校正 correction number校正数 correction value校正值 correlation相关,联系 correlation analysis相关分析 correlation coefficient相关系数 critical value临界值 cumulative frequency累积频率 D data资料 degree of confidence可信度,置信度 degree of dispersion离散程度 degree of freedom自由度 degree of variation变异度 dependent variable应变量 design of experiment实验设计 deviation from the mean离均差 diagnose accordance rate诊断符合率 difference with significance差别不显著 difference with significance差别显著 discrete variable离散变量 dispersion tendency离中趋势 distribution分布、分配 E effective rate有效率 eigenvalue特征值 enumeration data计数资料 equation of linear regression线性回归方程 error误差 error of replication重复误差 error of type IIⅡ型错误,第二类误差 error of type IⅠ型错误,第一类误差 estimate value估计值 event事件 experiment design实验设计 experiment error实验误差 experimental group实验组 extreme value极值 F fatality rate病死率 field survey现场调查 fourfold table四格表 freguency频数 freguency distribution频数分布 G Gaussian curve高斯曲线 geometric mean几何均数 grouped data分组资料 H histogram直方图 homogeneity of variance方差齐性 homogeneity test of variances方差齐性检验 hypothesis test假设检验 hypothetical universe假设总体 I incidence rate发病率 incomplete survey非全面调检 indepindent variable自变量 indivedual difference个体差异 infection rate感染率 inferior limit下限 initial data原始数据 inspection of data检查资料 intercept截距 interpolation method内插法 interval estimation区间估计 inverse correlation负相关 K kurtosis coefficient峰度系数 L latin sguare design拉丁方设计 least significant difference最小显著差数 least square method最小平方法,最小乘法 leptokurtic distribution尖峭态分布 leptokurtosis峰态,峭度 linear chart线图 linear correlation直线相关 linear regression直线回归 linear regression eguation直线回归方程 link relative环比 logarithmic normal distribution对数正态分布 logarithmic scale对数尺度 lognormal distribution对数正态分布 lower limit下限 M matched pair design配对设计 mathematical statistics数理统计(学) maximum value极大值 mean均值 mean of population总体均数 mean square均方 mean variance均方,方差 measurement data讲量资料 median中位数 medical statistics医学统计学 mesokurtosis正态峰 method of least squares最小平方法,最小乘法 method of grouping分组法 method of percentiles百分位数法 mid-value of class组中值 minimum value极小值 mode众数 moment动差,矩 morbidity患病率 mortality死亡率 N natality出生率 natural logarithm自然对数 negative correlation负相关 negative skewness负偏志 no correlation无相关 non-linear correlation非线性相关 non-parametric statistics非参数统计 normal curve正态曲线 normal deviate正态离差 normal distribution正态分布 normal population正态总体 normal probability curve正态概率曲线 normal range正常范围 normal value正常值 normal kurtosis正态峰 normality test正态性检验 nosometry患病率 null hypothesis无效假设,检验假设 O observed unit观察单位 observed value观察值 one-sided test单测检验 one-tailed test单尾检验 order statistic顺序统计量 ordinal number秩号 ordinate纵坐标 P pairing data配对资料 parameter参数 percent百分率 percentage百分数,百分率 percentage bar chart百分条图 percentile百分位数 pie diagram园图 placebo安慰剂 planning of survey调查计划 point estimation点估计 population总体,人口 population mean总体均数 population rate总体率 population variance总体方差 positive correlation正相关 positive skewness正偏态 power of a test把握度,检验效能 prevalence rate患病率 probability概率,机率 probability error偶然误差 proportion比,比率 prospective study前瞻研究 prospective survey前瞻调查 public health statistics卫生统计学 Q quality eontrol质量控制 quartile四分位数 R random随机 random digits随机数字 random error随机误差 random numbers table随机数目表 random sample随机样本 random sampling随机抽样 random variable随机变量 randomization随机化 randomized blocks随机区组,随机单位组 randomized blocks analysis of variance随机单位组方差分析 randomized blocks design随机单位组设计 randomness随机性 range极差、全距 range of normal values正常值范围 rank秩,秩次,等级 rank correlation等级相关 rank correlation coefficent等级相关系数 rank-sum test秩和检验 rank test秩(和)检验 ranked data等级资料 rate率 ratio比 recovery rate治愈率 registration登记 regression回归 regression analysis回归分析 regression coefficient回归系数 regression eguation回归方程 relative number相对数 relative ratio比较相对数 relative ratio with fixed base定基比 remainder error剩余误差 replication重复 retrospective survey回顾调查 Ridit analysis参照单位分析 Ridit value参照单位值 S sample样本 sample average样本均数 sample size样本含量 sampling抽样 sampling error抽样误差 sampling statistics样本统计量 sampling survay抽样调查 scaller diagram散点图 schedule of survey调查表 semi-logarithmic chart半对数线图 semi-measursement data半计量资料 semi-guartile range四分位数间距 sensitivity灵敏度 sex ratio性比例 sign test符号检验 significance显著性,意义 significance level显著性水平 significance test显著性检验 significant difference差别显著 simple random sampling单纯随机抽样 simple table简单表 size of sample样本含量 skewness偏态 slope斜率 sorting data整理资料 sorting table整理表 sources of variation变异来源 square deviation方差 standard deviation(SD)标准差 standard error (SE)标准误 standard error of estimate标准估计误差 standard error of the mean均数的标准误 standardization标准化 standardized rate标化率 standardized normal distribution标准正态分布 statistic统计量 statistics统计学 statistical induction统计图 statistical inference统计归纳 statistical map统计推断 statistical method统计地图 statistical survey统计方法 statistical table统计调查 statistical test统计表 statistical treatment统计检验 stratified sampling统计处理 stochastic variable分层抽样 sum of cross products of随机变量 deviation from mean离均差积和 sum of ranks秩和 sum of sguares of deviation from mean离均差平方和 superior limit上限 survival rate生存率 symmetry对称(性) systematic error系统误差 systematic sampling机械抽样 T t-distributiont分布 t-testt检验 tabulation method划记法 test of normality正态性检验 test of one-sided单侧检验 test of one-tailed单尾检验 test of significance显著性检验 test of two-sided双侧检验 test of two-tailed双尾检验 theoretical frequency理论频数 theoretical number理论数 treatment处理 treatment factor处理因素 treatment of date数据处理 two-factor analysis of variance双因素方差分析 two-sided test双侧检验 two-tailed test双尾检验 type I error第一类误差 type II error第二类误差 typical survey典型调查 U u testu检验 universe总体,全域 ungrouped data未分组资料 upper limit上限 V variable变量 variance方差,均方 variance analysis方差分析 variance ratio方差比 variate变量 variation coefficient变异系数 velocity of development发展速度 velocity of increase增长速度 W weight权数 weighted mean加权均数 Z zero correlation零相关
2023-01-01 12:00:521

完结的穿越小说

俺只推荐俺看过的,质量可以保证。《法老的宠妃》 作者:悠世穿越埃及文,经典哦。简介: 一个古老的手镯,把她带回三千年前辉煌的埃及; 一个恶作剧般的交集,竟使众所周知的史实天翻地覆; 为了把那段历史修正,她再次来到他身边; 等待她的,是危险?是阴谋?还是种种难以取舍的爱恨情仇…… 《多多益善》作者:喜善大人情节轻松。简介: 转世重生到了古代时空,原以为终于可以心安理得地做一回米虫,怎料却是个爹不亲、娘不爱的主,无奈,只得自力更生,艰苦创业。“金子、房子、铺子、孩子、美男子!多多益善!”“你说什么!”有人处于狂飙边缘。“呵呵!”心虚地笑,“妾身是说‘老公只要一个好"。”《穿越与反穿越》作者:妖舟挺经典的小说了,恐怕LZ已经看过,俺还是推荐一下。简介: 穿越好哇! 穿越好,把马子看美男,金银财宝手里攥。 穿越好,出天山入龙谭,绝世武功身上缠。 穿越好,走江湖游深宫,中外历史听我侃。 穿越好,主角命好,没什么本事,也能当魏小宝! 穿越好,配角长得好,十八般武艺样样精通,还瞎了眼的总往主角身边靠~《穿越之武林怪传》作者:蜀客JJ的文,旁上有名哦。这篇文算搞笑的,一个比较特别的武林。不过可惜的是因为出版的关系网上没有完结的。简介: 乱搞,胡扯,好好的江湖被整得乱七八糟乌烟瘴气面目全非一塌糊涂,剩下的,是一个奇特的、怪诞的、诡异的、从未听说过的江湖……天哪,她一个武侠迷怎会被作者拍到这样一个江湖!埋藏二十年的疑案终于揭开。原来,一切都只是一场闹剧。《逃嫁新娘》作者:酒壑盛人 ……民国穿越文,连俺这个超反感民国的人都觉得好看了。文章是不错,不过俺个人不怎么喜欢女主的性格,LZ还是可以看一下。简介: 灯红酒绿,霓裳阑珊,笙歌艳舞,醉生梦死。旧上海滩又没搞错,我就是跑步摔了一脚就摔回去了77年!阴差阳错我还要嫁给这个…… 这个拍拍手,地动山摇。旧上海的东家,这个男子沉默少语。却是迷惑众生的俊俏,他的野心,他的复仇,他的不得已。谁能知晓?《晓梦迷蝶·秋霁》作者:晚晴风景呃,这个不算清穿,是写一个清朝的格格穿越到战国时期,然后帮男主成为王的故事。比这个作者写的另外一本《瑶华》精彩多了!简介: 什么?要我退位让闲?舍弃万千宠爱于一身的阳光型格格身份,去做风吹就倒的没人疼郡主,天妒红颜啊!!!不过,这新身体容貌无双,又有个奸诈狡猾、英俊潇洒的狐狸哥哥,最重要的是此人还和我一样嗜权如命,终于找到同类了。看来留下也不错,既然老天给我个如此柔弱美丽又有身份的身体,要不把这锦绣江山尽在掌握,我就不叫瑶华。以上,谢谢。 犯神的少女穿越异时空的少女穿越公主我最大 后妃乱...很好看的两世花..三国穿越之绝色赌妃玥影横斜潇然梦绾青丝我都看过..质量保证... 楼上的说的是什么东东?
2023-01-01 12:00:589

For linear algebra:

简单的弄了一个,不少术语都记不大请了,还请见谅。Abscissa 横坐标 Absolute Value 绝对值 Absolute Value Rules 绝对值法则 Acceleration 加速度 Accuracy 准确性 Additive Inverse of a Matrix 加法逆矩阵A的 Algebra 代数 Analytic Geometry 解析几何 Analytic Methods 分析方法 Argument of a Function 函数论 Arithmetic Progression 算术级数 Arithmetic Sequence 算术序列 Arithmetic Series 算术系列 Asymptote 渐近 Augmented Matrix 增广矩阵 Average Rate of Change 平均变动率 Axes 轴Axis of Reflection 轴的映射Axis of Symmetry 轴对称 Axis of Symmetry of a Parabola 轴对称抛物线 Back Substitution 回到替代 Base of an Exponential Expression 指数表达基础 Binomial Coefficients 二项式系数 Binomial Coefficients in Pascal"s Triangle Pascal三角形的二项式系数 Binomial Theorem 二项式定理 Cartesian Coordinates 直角坐标系 Cartesian Form 笛卡尔形式 Cartesian Plane 直角平面 Ceiling Function 上限函数 Change of Base Formula 基本公式变换 Check a Solution 解的检验 Closed Interval 闭区间 Coefficient 系数 Coefficient Matrix 系数矩阵 Column of a Matrix 矩阵列 Combination 组合 Combination Formula 组合公式 Combinatorics 组合 Common Logarithm 公对数Common Ratio 公比 Complex Conjugate 复共轭 Complex Fraction 复分数 Complex Number Formulas 复量计算公式 Complex Numbers 复数 Complex Plane 复平面 Composite 综合 Composition 组成 Compound Fraction 复合分数 Compound Inequality 复合不平等 Compound Interest 复利 Compounded 复杂 Compounded Continuously 复合连续性 Compute 计算 Conditional Equation 条件方程 Conditional Inequality 条件不等式 Conic Sections 圆锥曲线部分 Conjugate Pair Theorem 共轭对定理 Consistent System of Equations 同系统方程 Constant 常数 Constant Function 常数函数 Continued Sum 累加Continuous Compounding 连续复合 Continuously Compounded Interest 连续复利 Convergent Sequence 收敛序列 Convergent Series 收敛级数 Coordinate Geometry 坐标几何 Coordinate Plane 坐标平面 Coordinates 坐标 Cramer"s Rule 克莱姆法则 Cube Root 立方根 Cubic Polynomial 三次多项式 Decreasing Function 减函数 Dependent Variable 依变项 Descartes" Rule of Signs 笛卡尔法治的标志 Determinant 行列式 Diagonal Matrix 对角矩阵 Difference Quotient 差商 Dilation 扩张 Dilation of a Graph 扩张图 Dimensions of a Matrix 矩阵维度 Direct Proportion 成正比 Directly Proportional 成正比 Directrix of a Parabola 抛物线准线 Discriminant of a Quadratic 二次判别式 Distance Formula 距离公式 Distributing Rules 分布规律 Diverge 发散 Divergent Sequence 发散序列 Divergent Series 发散系列 Domain 域 Domain of Definition 域的定义 Double Cone 双锥 Double Root 双根 Doubling Time 倍增时间 Echelon Form of a Matrix 矩阵梯式 Element of a Matrix 矩阵元素 Ellipse 椭圆 Equation 方程 Equation of a Line 线方程 Equivalent Systems of Equations 等效系统方程 Evaluate 估算 Even Function 偶函数Exponent 指数 Exponent Rules 指数规则 Exponential Decay 指数衰减 Exponential Function 指数函数 Exponential Growth 指数增长 Exponential Model 指数模型 Exponentiation 幂 Expression 表达 Extraneous Solution 无关解 Extreme Values of a Polynomial 多项式极值 Extremum 极值 Factor of a Polynomial 多项式因子 Factor Theorem 因子定理 Factorial 阶乘 Factoring Rules 阶乘规则 Focal Radius 焦距 Foci of an Ellipse 椭圆焦点 Foci of a Hyperbola 双曲线焦点 Focus 焦点 Focus of a Parabola 抛物线焦点 Formula 公式 Fractional Equation 分数方程 Fractional Exponents 分数指数 Fractional Expression 分数的表达 Function 功能 Fundamental Theorem of Algebra 代数基本定理 Fundamental Theorem of Arithmetic 算术基本定理 Gauss-Jordan Elimination 高斯-约旦消除 Gaussian Elimination 高斯消去法 General Form for the Equation of a Line 直线一般形式 Geometric Mean 几何平均数Geometric Progression 几何级数 Geometric Sequence 几何序列 Geometric Series 几何级数 Golden Ratio 黄金比例 Golden Spiral 黄金螺旋 Graph of an Equation or Inequality 方程或不等式图形 Graphic Methods 图解法 Gravity 重力 Greatest Common Factor 最大的公因数 Greatest Integer Function 最大的整函数 Half-Closed Interval 半封闭区间 Half-Life 半衰期 Half-Open Interval 半开区间 Harmonic Mean 调和平均数 Harmonic Progression 谐和级数 Harmonic Sequence 谐和序列 Harmonic Series 谐和级数 Horizontal Compression 水平压缩 Horizontal Dilation 水平拉伸 Horizontal Reflection 水平反射 Horizontal Translation 水平转换 Hyperbola 双曲线 Identity (Equation) 判别式(方程) Identity Matrix 矩阵判别式 Imaginary Numbers 虚数 Imaginary Part 虚部 Increasing Function 增函数 Independent Variable 独立变量 Inequality 不等式 Infinite Geometric Series 无限几何级数 Infinite Series 无穷级数 Interest 利率Interval 区间 Interval Notation 间隔符号 Inverse 逆 Inverse Function 反函数 Inverse of a Matrix 逆矩阵 Inverse Proportion 反比例 Inversely Proportional 成反比 Invertible Matrix 可逆矩阵 Joint Variation 因变量LCM 最小公倍数 Leading Term 最高次项 Least Common Multiple 最小公倍数 Linear 线性 Linear Combination 线性组合 Linear Equation 线性方程组 Linear Factorization 线性因式分解 Linear Inequality 线性不等式 Linear Polynomial 线性多项式 Linear Programming 线性规划 Linear System of Equations 线性系统方程 Locus 轨迹 Logarithm 对数 Logarithm Rules 对数规则 Logistic Growth Logistic增长 Main Diagonal of a Matrix 矩阵主要对角线 Major Axis of an Ellipse 椭圆长轴 Major Axis of a Hyperbola 双曲线长轴 Mathematical Model 数学模型 Matrix 矩阵 Matrix Addition 此外矩阵 Matrix Element 矩阵元 Matrix Inverse 矩阵求逆 Matrix Multiplication 矩阵乘法 Matrix Subtraction 矩阵的减法 Mean 有意义 Mean of a Random Variable 平均随机变量 Midpoint 中点 Midpoint Formula 中点公式 Minor Axis of an Ellipse 椭圆短轴 Minor Axis of a Hyperbola 双曲线短轴 Model 模型 Monomial 单项 Multiplicity 多重 Multivariable 多变量 Multivariate 多元 Natural Domain 自然域 Natural Logarithm 自然对数 Negative Exponents 负指数 No Slope 没有斜率Noninvertible Matrix 不可逆矩阵 Nonreal numbers 非实数 Nonsingular Matrix 非奇异矩阵 Nontrivial 非平凡 nth Root n次方根 nth Root Rules n次方根规则 Oblique Asymptote 斜渐近 Odd Function 奇函数 One Dimension 一维 One-to-One Function 一对一函数 Open Interval 开区间 Ordered Pair 有序数对 Oval 椭圆形 Parabola 抛物线 Partial Fractions 部分分式 Pascal"s Triangle 杨辉三角 Permutation 置换 Permutation Formula 置换公式 Piecewise Function 分段函数 Point of Symmetry 点对称 Point-Slope Equation of a Line 点斜式直线方程 Polynomial 多项式 Precision 精度 Proportional 比例 Pure Imaginary Numbers 纯虚数 Quadrants 象限 Quadratic 二次 Quadratic Equation 二次方程 Quadratic Formula 二次公式 Quadratic Polynomial 二次多项式 Quartic Polynomial 四次多项式 Quintic Polynomial 五次多项式 Range 范围 Rational Equation 有理方程 Rational Expression 有理表达 Rational Function 有理函数 Rational Numbers 有理数 Rational Root Theorem 有理根定理 Rationalizing the Denominator 分母有理化 Real Numbers 实数 Real Part 实部 Rectangular Coordinates 直角坐标 Recursive Formula of a Sequence 递推公式的一个序列 Reflection 反射 Relation 关系 Remainder Theorem 剩余定理 Restricted Domain 有限域 RMS 有效值 Root Mean Square 均方根 Root of an Equation 方程根 Root Rules 根规则 Rotation 旋度 Satisfy 满足 Sequence 序列 Series 系列 Set-Builder Notation 设置建设者乐谱 Shift 转移 Shrink 收缩 Side of an Equation 方程的一侧 Sigma Notation 西格玛乐谱 Simple Interest 简单利率 Simplify 简化 Simultaneous Equations 联立方程 Singular Matrix 奇异矩阵 Slope of a Line 直线斜率 Solution 解 Solution Set 解集 Speed 速度 Square Root 平方根 Square Root Rules 平方根规则 Standard Form for the Equation of a Line 直线标准式 Strict Inequality 严格的不等式 Symmetric 对称 Symmetric about the Origin 原点对称 Symmetric about the x-axis X轴对称 Symmetric about the y-axis Y轴对称 System of Equations 方程系 System of Linear Equations 线性方程组系 Trinomial 三项 Triple Root 三根 Two Dimensions 二维 Variable 变量 Velocity 速度 Vertex of an Ellipse 椭圆顶点 Vertex of a Hyperbola 双曲线顶点 Vertex of a Parabola 抛物线顶点 Vertical Compression 竖直压缩 Vertical Dilation 竖直扩张 Vertical Ellipse 竖直椭圆 Vertical Hyperbola 竖直双曲线Vertical Line Equation 垂线方程 Vertical Parabola 竖直抛物线 Vertical Reflection 竖直反射 Weighted Average 加权平均 x -intercept X轴交点 y -intercept Y轴交点 Zero Slope 零斜率也可以到 看一下,上面的数学术语很全,而且有详尽说明,不过全都是英文的。另外,团IDC网上有许多产品团购,便宜有口碑
2023-01-01 12:01:281

Java中Math方法举例

分数太少了,建议你去看JDK
2023-01-01 12:01:344