Marketing learning-1
Today we start to learn something about marketing together.Sometimes i just propose a question,and i need you to think about the problem with me.
Part one
Marketing:exchange between buyer and seller
1)buyer's market:product focus market
2)seller's market:customer focus market(meet customer need)
What customer want? How to pick or choose customers('cause we cann't meet all customers' need)?
Make customer willing to buy? Create some value?
Profitable ---> Building customer loyalty:
give customer exactly what they want ---> keep creating value ---> deliver value to customer --->loyalty (customer share)
3)connected community (Experience,focus deeper on customer experiential value,"Customer is lord!")
4)global recession:economic uncertainty (Trust,focus on genuine customer value-reset,discipline,flexibility,cut cost..)
5)Conclusion:
①product orientation:generic product,persuade customer to want what the firm has
Competitive advantage (CA):lowest cost
Profitability drivers (PD):market share
②marketing orientation:different products/services,persuade firm to offer what the customer want
CA:quality and service,customer knowledge
PD:customer share,customer loyalty
③experience orientation:experiential value,manage customer's entire experience with the firm
CA:transformation,customer as co-creator of value
PD:buzz(暗中散布),referrals
④trust orientation:genuine value,priortize building a relationship of trust and discipline
CA:trust
PD:discipline
Part two
1.three principles of marketing:
1)principle of customer value (rather than competition)
2)principle of differentiation (do better than competition)
3)principle of segmentation (segment market),targeting (target customer),and positioning (position brand)
2.4 P's of marketing:
product (seller), place (deliver/exchange), promotion (communication), price (buyer)
3.market-driven principle:
1)know your markets:competitive,global,customers' need (value ---> deliver)
2)customers have the final say:they cann't consider anything,but they would choose what they want at that time
how they pick?
decision process (3 bundles):operational factor,product features,customer needs
3)commit to being the first in the market you serve (but everyone tends to copy!!)
4)deliver total quality to guarantee customer satifaction
Marketing learning-1的更多相关文章
- .NET Core Ecosystem
.NET .NET Blog Application Models Web Mobile Desktop Microservices Gaming Machine Learning Cloud Int ...
- Awesome Reinforcement Learning
Awesome Reinforcement Learning A curated list of resources dedicated to reinforcement learning. We h ...
- A beginner’s introduction to Deep Learning
A beginner’s introduction to Deep Learning I am Samvita from the Business Team of HyperVerge. I join ...
- Why are very few schools involved in deep learning research? Why are they still hooked on to Bayesian methods?
Why are very few schools involved in deep learning research? Why are they still hooked on to Bayesia ...
- Build a Machine Learning Portfolio(构建机器学习投资组合)
Complete Small Focused Projects and Demonstrate Your Skills (完成小型针对性机器学习项目,证明你的能力) A portfolio is ty ...
- How do I learn machine learning?
https://www.quora.com/How-do-I-learn-machine-learning-1?redirected_qid=6578644 How Can I Learn X? ...
- How do I learn mathematics for machine learning?
https://www.quora.com/How-do-I-learn-mathematics-for-machine-learning How do I learn mathematics f ...
- A Gentle Guide to Machine Learning
A Gentle Guide to Machine Learning Machine Learning is a subfield within Artificial Intelligence tha ...
- 机器学习基石第一讲:the learning problem
博客已经迁移至Marcovaldo's blog (http://marcovaldong.github.io/) Andrew Ng的Machine Learning比較简单,已经看完.林田轩的机器 ...
- Machine Learning and Data Mining(机器学习与数据挖掘)
Problems[show] Classification Clustering Regression Anomaly detection Association rules Reinforcemen ...
随机推荐
- 常用工具使用(sublimeText)
1.sublime Text (插件的安装,删除,更新) 1.1 使用 ctrl+`快捷键(Esc下面的波浪线按钮) 或者 菜单项View > Show Console 来调出命令界面,下面代 ...
- pta 编程题16 Saving James Bond - Easy Version
其它pta数据结构编程题请参见:pta 题目 主要用到了深度优先搜索. #include <iostream> using namespace std; struct Vertex { i ...
- ffmeg过滤器介绍[转]
在ffmpeg中,进行反交错需要用到avfilter,即图像过滤器,ffmpeg中有很多过滤器,很强大,反交错的过滤器是yadif. 基本的过滤器使用流程是: 解码后的画面--->buffer过 ...
- 【转载】#229 - The Core Principles of Object-Oriented Programming
As an object-oriented language, c# supports the three core principles of object-oriented programming ...
- Linux 下MySQL数据库配置远程访问
1. mysql -u root -p 第一次直接回车跳过密码 2. use mysql; 3.执行授权命令 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDE ...
- C#获取Honeywell voyager 1400g扫码后的数据
一.在类方法中加入 System.IO.Ports.SerialPort com;二.在构造方法中加入 try { com = new System.IO.Ports.SerialPort(&qu ...
- Bootstrap 折叠(collapse)插件面板
折叠插件(collapse)可以很容易地让页面区域折叠起来, 无论您是用它来创建折叠导航还是内容面板,它都允许很多内容选项. 您可以使用折叠插件 1.创建可折叠的分组或折叠的面板 <!DOCTY ...
- 更新MySQL数据库( java.sql.SQLException: No value specified for parameter 1) 异常 解决方法
package com.swift; import java.io.File; import java.sql.Connection; import java.sql.PreparedStatemen ...
- ios swift 里面关于变量 常量 可选类型 控制流的一些心得
//swift 里面没有头文件和实现文件.只有一个.swift文件 //swift 里面没有main的概念,程序从main.swift开始执行 //swift 每一条执行语句可以不用分号结束,多条语句 ...
- Java 批量文件压缩导出,并下载到本地
主要用的是org.apache.tools.zip.ZipOutputStream 这个zip流,这里以Execl为例子. 思路首先把zip流写入到http响应输出流中,再把excel的流写入zip ...